Using a .JSP file for the webservice

Hello,
I am using a .JSP file to view my webservice, just like in this tutorial: http://otn.oracle.com/tech/webservices/htdocs/series/news/content.html
But when I try to run my JSP file i get this error:
500 Internal Server Error
OracleJSP:
JSP Error:
Request URI:/InternAdressen-InternAdresProj-context-root/internadres.jsp
Exception:
java.lang.NoClassDefFoundError: _InternAdres
     java.lang.Class java.lang.ClassLoader.defineClass0(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
          native code
     java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
          ClassLoader.java:493
and a lot more of errors like this. Can you help me?

It didn't work. I still get this error:
500 Internal Server Error
OracleJSP:
JSP Error:
Request URI:/InternAdressen-InternAdresProj-context-root/internadres.jsp
Exception:
java.lang.NoClassDefFoundError: _InternAdres
     java.lang.Class java.lang.ClassLoader.defineClass0(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
          native code
     java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
          ClassLoader.java:493
     java.lang.Class java.security.SecureClassLoader.defineClass(java.lang.String, byte[], int, int, java.security.CodeSource)
          SecureClassLoader.java:111
     java.lang.Class oracle.jsp.app.JspClassLoader.loadClass(java.lang.String, boolean)
          JspClassLoader.java:682
     java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String)
          ClassLoader.java:255
     oracle.jsp.runtimev2.JspPageInstFacade oracle.jsp.runtimev2.JspPageInfo.getInstFacade(oracle.jsp.provider.JspClassProvider, javax.servlet.http.HttpServletRequest)
          JspPageInfo.java:160
     oracle.jsp.runtimev2.JspPageInstFacade oracle.jsp.runtimev2.JspPageTable.getInstFacade(javax.servlet.htt[i]Long postings are being truncated to ~1 kB at this time.

Similar Messages

  • Finding jsp file for the OA framework

    hi all,
    i working in the OA framework, and i need to do some changes in the application and i need to get the jsp files for the shopping carts, i connected to the server through ftp.
    from the about link in the shopping cart it says that the OA_HTML found in the path /u01/applcrp2/crp2comn/html/ but i coudn't find the jsp files for the shopping cart, i also need to locate the java classes for this files
    any help please, is there any documentation on this issue - the location of the files in the OA framework in the server.
    urgent please any tipes
    Mahdi

    Oracle guys - maybe it's time for a "sticky" post at the top of the forum entitled This is not the right forum for asking OA Framework questions.
    The OA Framework Forum is [url http://forums.oracle.com/forums/forum.jspa?forumID=210]here
    I am going to become the top poster on this forum just responding to these ;)
    John

  • Refreshing JSP file for an exploded WAR without undeploying the WAR - 7210

    The weblogic.Deployer utility with -activate option does redeploy my application. How do I prevent redeployment while refreshing. I'm using Weblogic 7.0.0.0.
              Thanks
              Senthil Kumar.S
              

    Thanks mbg for your response.
              Our production environment does not support the option a. We use the
              option b approach.
              My config.xml looks like this for the webapplication
              <Application Deployed="true" Name="oas"
              Path="/tmp/senthil/oas3.7.1.5"
              StagedTargets="DOAS_MT_021_20501" TwoPhase="true">
              <WebAppComponent Name="oas" Targets="DOAS_MT_CLUSTER_1"
              URI="oas"/>
              </Application>
              I performed the following steps..
              1) Modified the following jsp file on the admin.
              /tmp/senthil/oas3.7.1.5/oas/customercare/contactus.jsp
              2) Ran the following command on the admin
              java weblogic.Deployer -adminurl t3://n.n.n.n:20501 -user system
              -password weblogic -name oas -activate customercare/contactus.jsp
              after running the command,
              I was able to identify the corresponding jsp file immediately updated
              on the managed instance under the stage folder. But the class file on
              the stage folder was not updated and neither the class file on the
              .wlnotdelete folder. I was using the pagecheckseconds on the
              weblogic.xml as -1.
              I stopped both the admin and manage, modified the pagecheckseconds to
              1 Hour and when I performed same steps as before, I was able to see
              the jsp file updated and also getting compiled (when accessed) and
              serving the updated content. Also the user session was kept intact.
              i.e. no interruption to the session. This was what I was expecting
              for. The strange thing is, it didn't wait for one hour to compile. It
              was compiling immediately when I accessed the modified jsp file. I'm
              not sure whether it would behave the same way if I put that value as 1
              day or some very big +ve value.
              I'm not sure whether I'm doing the right way. i.e. changing the
              pagecheckseconds to ve value. Also I'm not sure whether the ve value
              for the pagecheckseconds would create impact on performance.
              Thanks for your time.
              Senthil Kumar.S
              "Mark Griffith" <[email protected]> wrote in message news:<[email protected]>...
              > Ahh clarity. :D
              >
              > You can:
              >
              > a) deploy your exploded web app with -nostage option. Meaning nocopy, or in
              > otherwords "WLS when you deploy this Application to each server in the
              > cluster, don't copy the bits to each server, just deploy from this src".
              > What that means is that the path that maps to the directory of your webapp
              > must be accessible, or resolvable on each server that it is deployed to.
              >
              > java weblogic.Deploy .... -nostage -activate -source /myapps/mywebapp
              >
              > so that /myapps/mywebapp must be resolvable on each server that it is
              > deployed to. You can accomplish this via a shared network directory for
              > /myapps or you can copy and create /myapps your self on each of the
              > machines.
              >
              > b) deploy your exploded web app with -stage option. Meaning copy, or in
              > otherwords "WLS when you deploy this Application to each server in the
              > cluster, do copy the bits from my "source" to each server" In this case,
              > you will have to use refresh
              >
              > What command did you execute on with weblogic.Deployer
              >
              > Cheers
              > mbg
              >
              >
              >
              > "Senthil Kumar S" <[email protected]> wrote in
              > message news:[email protected]...
              > > Let me rephrase my requirement..
              > > My production environment is Weblogic 7.0.1 with a clustered environment
              > with exploded WAR.
              > > How do I refresh my jsp files with out undeploying my web application?
              > >
              > > When I tried by modifying the jsp file on the exploded directory on the
              > admin and ran the weblogic.Deployer utility, it successfully updated the
              > copy on the managed instance (I verified by checking the stage directory).
              > But the jsp was never recompiled on the managed instance and it was serving
              > old content.
              > >
              > > Thanks
              > > Senthil Kumar.S
              

  • Packaging a .bar file for the BlackBerry Tablet (Playbook) Simulator Using Command Line.

    Hi there, I've been trying to deploy one of my AIR apps on the BlackBerry Tablet (PlayBook) Simulator and and have run into a problem packaging the .bar file using the command line.  I started this off by reading the article at:
    http://www.adobe.com/devnet/devices/articles/blackberry_playbook_battery.html
    I followed some of the steps there, but found this article on how to package my files using a command line more helpful (the Adobe article doesn't even explain how to package the .bar file using the command line):
    http://supportforums.blackberry.com/t5/Tablet-OS-SDK-for-Adobe-AIR/Compile-and-Debug-witho ut-Flash-Builder-Using-a-Command-Line/ta-p/628675
    Everything was going great until I went to compile my application and received the following error:
    Exception in thread "main" java.lang.NoClassDefFoundError: com/qnx/bbt/airpackag
    er/BarAirPackager
    Caused by: java.lang.ClassNotFoundException: com.qnx.bbt.airpackager.BarAirPacka
    ger
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Could not find the main class: com.qnx.bbt.airpackager.BarAirPackager.  Program
    will exit.
    Has anyone run into this issue when trying to package a .bar file for the BlackBerry Tablet (Playbook) Simulator?  I've tried using a SWF published in CS5 and CS4.

    Just thought I'd reply to my own post, in case someone else runs into this problem.  Make sure you have the latest and greatest versions of the JDK and JRE installed on your system, in addition to the requirements listed in BlackBerry's list of installs:
    http://us.blackberry.com/developers/tablet/adobe.jsp

  • [svn:fx-trunk] 11585: Initial check-in of CoreTech' s pixel bender kernel files for the pixel bender filters we use to mimic AIM blendModes based on Vera 's ok.

    Revision: 11585
    Author:   [email protected]
    Date:     2009-11-09 13:39:53 -0800 (Mon, 09 Nov 2009)
    Log Message:
    Initial check-in of CoreTech's pixel bender kernel files for the pixel bender filters we use to mimic AIM blendModes based on Vera's ok. Added the standard Flex copyright headers to what Core Tech passed along.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: Me
    Tests run: Checkintests
    Is noteworthy for integration: Yes, perhaps, to downstream teams that want to rebuild the pixel bender filters
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Colo r.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Colo rBurn.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Colo rDodge.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Excl usion.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Hue. pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Lumi nosity.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Lumi nosityMaskFilter.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Satu ration.pbk
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/shaders/Soft Light.pbk

  • I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    So it sounds like you are trying to burn a DVD with photos on it so the photos can be either transferred to or displayed on a Windows PC, is that correct?
    For the purposes of this I am going to assume you are using iPhoto '11.
    Gather the photos you want to burn to DVD in one album in iPhoto. This is not absolutely necessary but it sure makes things easier for me.
    Select that album, then go to the File menu and select Export...
    In the dialog that shows up, select the File Export tab. Select the setting you want to use for export. Click the Export button.
    Another dialog will show up. Set the location to Desktop and click the New Folder button. Name the folder something nice and descriptive and click the Create button.
    Click the OK button. Quit iPhoto as the rest of this work will be done in the Finder.
    You will now have a folder on your desktop with that nice descriptive name. Find it and select it. Go to the File menu and from it select Burn "Descriptive folder name" to Disc...
    Insert a blank DVD when prompted.
    Let the finder complete the work and eject the disc afterwards.
    That's it. Best of luck.

  • Proble while creating new Data Connection for the Webservice

    Hai All,
    when creating a new Data Conneciotn for the Webservice in the interactive form i got the following errror
    Cannot choose this operation:
    - there is no associated SOAP Binding
    edit -> new Data Connection -> WSDL -> i entered the wsdl url -> i got the methods in that webservice
    but when i select one of the method in the methods list i got above error
    i developed a webservice in NWDS and deployed the WAS ( created a webservice for the session bean)
    please help me to solve the problem
    Thanks in advance
    Siva Sankar N

    Problem was solved,
    Downloading the WSDLs:
    Download the 3 WSDL files from the WAS using the WS-navigator tool:
    Go to http://<was-host>:50000/wsnavigator/enterwsdl.html
    Select your WS
    Click in the menu “WSDLs”
    Download the default SAP WSDL
    You will have 3 WSDL files in the downloaded zip files.
    1) main.wsdl
    2)config1_XXXXVi_document.wsdl
    3_configl_document.wsdl
    Perform the follwing task to the above wsdl files, and use this wsdl files to the datasource
    1. Copy/paste the <wsdl:service> XML element from the main.wsdl to the Config1_SDN_adobeWSVi_document.wsdl.
    2. Copy the <wsdl:binding> XML element from the Config1_document.wsdl to the Config1_SDN_adobeWSVi_document.wsdl.
    3. Add the SOAP namespace (xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/") from the main.wsdl to the Config1_SDN_adobeWSVi_document.wsdl.
    4. Adjust the namespace reference by replacing “prt0” and “bns0” with “tns”.

  • How to use a WSDL file to call webservice? Help!

    Hi Experts,
         I have exposed a SAP function module as webservice using the
         Utilities -> More Utilities -> Create Web Service -> From Function module
         What does this step actually does? Does it create some kind of web application like BSP for the function module in the background?
         After creating the web service I have released the service definition for the SOAP runtime using the transaction WSCONFIG.
        Finally I have generated the WDSL file ofr the webservice using WSADMIN transaction.
        After this how will my third party application like Java will use the WSDL? Will I need any connector software to be installed in Java side.
        How exactly will java call my webservice using WSDL?
        What actually happens or what is the message flow when java application calls by webservice?
        Kindly help.
    Thanks
    Gopal

    Hi, Your solution should be correct and it's a quite common approach for Login authentication.Informatica's webservice provider also need 2 steps for calling its webservice1. Getting the session ID using username and password 2. Use the session ID to call any active operation 3. Use the session ID to log out if webservice do not have any time out settings for each session. SOAP standard is listed in the WSDL of saleforce webservice. It affects if you cannot find/call any operation in PowerCenter level. My lastest information is for PWC 9.1 version only, I don't know if they have enhanced this function in 9.5. If you can call the operation, you can just put it (SOAP standard) way first. Regards,Felix

  • More than one outbound interface for the webservice scenario

    Hi Experts,
    Is it possible to have more than one outbound interface for the Webservice synchronous scenario? I have tried it , but I couldn't implement it.
    I would like to have your suggestions.
    Regards
    Sara

    Hey,
    Creation of a wsdl file
    /people/riyaz.sayyad/blog/2006/05/07/consuming-xi-web-services-using-web-dynpro-150-part-i
    N:1 seemz he was refering to multimapping scenario.
    <b>Cheers,
    *RAJ*
    *REWARD POINTS IF FOUND USEFULL*</b>

  • Storing .jsp files in the web-inf directory

    Has anyone ever heard about storing JSP files in the web-inf directory instead of the web app root directory.
    Apparently it improves security.
    If this is so, how is the user suppose to access the jsp file since I thought that users were not able to access what is stored in the web-inf directory.
    Any thoughts
    Thanks
    Nat

    I didn't tyr this but I think it is possible. You can do it using <servlet-mapping/> as you do with any other servlet.
    For example include lines below, in web.xml of web-inf,
    <servlet>
    <servlet-name>ReportRouter</servlet-name>
    <jsp-file>/web-inf/jsp/ReportRouter.jsp</jsp-file>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>ReportRouter</servlet-name>
    <url-pattern>/myrouter</url-pattern>
    </servlet-mapping>
    This may work. Don't you think so?
    Sudha

  • Logging for the webservices connector

    Hi all, I am confused.
    I am looking for How to enable logging for the webservices connector.
    The Wiki article: How to enable logging for the webservices connector (http://social.technet.microsoft.com/wiki/contents/articles/12427.fim2010-how-to-enable-logging-for-the-webservices-connector.aspx)
    explains how to enable Web Service Configuration Tool, not Web Service Connector. I follow these instructions and log only the web Service Configuration tool usage, not Web Service Connector.
    In Microsoft documentation point to logging.xml, but this file has GALSYNC log configuration, I did no t find
    Logging level section:
    <setting name="LoggingLevel" serializeAs="String">
    <value>0</value>
    </setting>
    Someone can explain me how to enable logging for WEB Service Connector?
    Thanks in advanced
    Best Regards
    JuanCC Technology Specialist

    Hi,
    If you want to use SharePoint web service in Java client, the following articles for your reference:
    Connect And Access Sharepoint Webservice From Java
    http://blog.ashwani.co.in/blog/2013-07-28/connect-and-access-sharepoint-webservice-from-java/
    Reading a SharePoint list with Java: tutorial
    https://davidsit.wordpress.com/2010/02/10/reading-a-sharepoint-list-with-java-tutorial/
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Compile jsp file for long time

    Hi All,
    I'm applying patch on EBS 11.5.9, now it's compiling jsp file for about 1hours.
    Below is the log file,
    enumerating jsps...13577
    updating dependency...13
    parsing jsp...13
    writing deplist...13577
    initializing compilation:
    eliminating children...10257 (-3320)
    searching uncompiled...13 (10 were stale)
    translating and compiling:
    searching untranslated...13
    translating jsps...
    Please advise.
    Thanks,
    Kevin

    I'm applying patch on EBS 11.5.9, now it's compiling jsp file for about 1hours.
    Below is the log file,What is the command you use to compile JSP file?
    It is normal for compiling JSP files to run for more than 1 hour, which depends on the hardware resources you have. So, I would suggest you wait and see if the job completes successfully.
    Thanks,
    Hussein

  • How to store a JSP file in the SAP Application server ?

    Hello All,
    My reqt. is as follows :
    1. I need to store a JSP File on the SAP Application server .
    How can I do this ?
    2. I want to call the uploaded jsp file from the server and call this jsp from abap to view the result of it .
    How can I achieve this ?
    First of all is this possible ?
    Regards,
    Deepu.K

    Hello Mike,
    Thanks for ur reply.
    I've imported the JSP as a mime object into the BSP.
    Now I've created the page to show that Mime Object as an image.
    But nothing is coming as an output.
    But then,there is an option for that mime object. i.e when I right click on the mime object there is an option called " convert to BSP".
    I selected that option and it created a view in my BSP .( My BSP is a page with flow logic application )
    Now how should i make this view to be an output ?
    I guess this shud be posted in the BSP Forum ...but still taking a chance here :)-
    Regards,
    Deepu.K

  • *UPDATED 7/15/04* Complete guide to bioses, drivers, and needed files for the MSI K8N Neo Platinum

    Complete newbie's guide to bioses, drivers, and needed files for the MSI K8N Neo Platinum:
    Last Updated: Thursday July 15th, 2004
    Bioses:
    (In order of date released.)
    1.1b3 - (Download)
    - Pre-1.1, given to reviewers to use in their reviews and benchmarks.
    - Less stable, but supposedly you get slightly better overclocks.
    1.1 Official - (Download)
    1. This is AWARD BIOS release
    2. This BIOS fixes the following problems of the previous version:
    - Memory always run DDR 200 when install single side DDR on DIMM2 & DIMM3.
    - Windows 2000 can't format the RAID IDE HDD when plug in Promise 378 controller.
    1.2b5 - (Download)
    1.2b7 - (No Download Yet)
    1.2b10 - (Download)
    - First attempt to fix false temperature readings. Fixes it for some people with Newcastle cores and doesn't fix it for anybody with Clawhammer cores.
    1.2b12 - (Download)
    - Second attempt to fix false temperature readings. Fixes it for some people with Newcastle cores and some people with Clawhammer cores.
    1.3b1 - (Download)
    - Another attempt to fix temperature problems?
    - Possibly fixes cold boot/power light issues?
    1.2 Official - (Download)
    1. This is AWARD BIOS release
    2. This BIOS fixes the following problems of the previous version:
    - System can't resume from S3 sometimes when install USB device.
    - Support K8 Sempron CPU.
    - Turn off keyboard LED in S3.
    --Quick Guide for flashing BIOS, provided by MSI--
    1. Create a MS-DOS boot diskette, then copy the the .exe and the bios file to the floppy disk. Both of these files can be found in the package you downloaded.
    2. Press "Delete" and go to BIOS setup while computer bootup.
    Check BIOS advanced features and see if BIOS flash write control is enabled
    (This option must be enabled. If you can not find this setting, it means the BIOS can be
    flashed.)
    3. Boot from MS-DOS boot diskette and get a:\> prompt.
    4. Type "", then press ENTER
    5. The flash program will then ask "Do you want to save BIOS?", please press "N" for no. The when you see Press 'Y' to program or 'N' to Exit, please press "Y" to continue.
    6. After flashing complete, remove floppy and reset the system .
    7. Press DELETE or F1 when prompted at first reboot after flashing.
    8. Load BIOS optimized defaults, then save settings and exits.
    Drivers & Needed Files:
    (Note: All these drivers are for Windows XP.)
    Leaked Nvidia nForce3 Chipset Drivers Version 4.40
    (Please use at your own risk, these are LEAKED drivers. Password for the .zip file is "ocworkbench rules". Also, you will need to rename the WinXP_2K folder in IDE to either WinXP or Win2K else the installer doesn't pick it up.) Thanks for the link Wonkanoby!
    *NEW* Leaked Nvidia nForce3 Chipset Drivers Version 5.03
    More leaked drivers? Seems some parts of the drivers are older and some are newer.
    1. Windows XP Service Pack 1A (Web Install) -or- Windows XP Service Pack 1A (Full Install)
    2. Microsoft DirectX 9.0b (Web Install) -or- Microsoft DirectX 9.0b (Full Install)
    3. Nvidia nForce3 Chipset Drivers Version 4.24
    4. AMD Athlon 64 Processor Driver Version 1.1.0.14
    5. Nvidia Video Card Driver Version 56.72 -or- Omega Nvidia Video Card Driver Version v1.5303
    (The Omega drivers are third party drivers optimized for gaming, most prefer these over the standard Nvidia drivers.)
    5. ATI Video Card Driver Version 4.7 -or- Omega ATI Video Card Driver Version 2.5.51
    (The Omega drivers are third party drivers optimized for gaming, most prefer these over the standard ATI drivers.)
    6. Onboard Sound Driver (Realtek AC'97 Audio Codec) Version A3.61
    It is HIGHLY reccomended that you install the drivers/needed files in the order listed above. Please note that there are two #5's because you either install one or the other depending on your video card, do not install both of them.
    You will come across a problem here though. You can't install the chipset drivers without installing the Windows service pack and DirectX first, but the Windows service pack and DirectX installs need the internet to download files and you won't have working internet until you install the chipset drivers. Here's what I did to get around this. Instead of downloading the web install versions of Windows service pack and DirectX, download the full version and and put them along with all the other drivers on a backup hard drive or burn them to a CD, this way you will have all the drivers you need when it's time to install them and none of them will require the internet to download files.
    Another note when installing drivers. Apparently the Nvidia chipset drivers also come with drivers for the onboard sound, but people seem to agree that the Realtek onboard sound drivers are better. When you are installing the Nvidia chipset drivers, just be sure to uncheck the box for sound drivers when it asks you which drivers you would like to install. Now you can safely install the Realtek drivers without any chance of conflicting sound drivers. Thanks for the tip Wonkanoby!

    Quote
    Originally posted by RLiu818
    Quote
    Originally posted by Deviation56
    Quote
    Originally posted by RLiu818
    You CAN install the nforce drivers BEFORE installing SP1.  The only requirement to install the nforce drivers is DX9.
    So is SP1 still recommended to install before the nforce drivers?
    The installer still reccomends to install it beforehand for full USB 2.0 functionality... I would have put what you said in there but I wanted to keep it as simple as possible.  
    oh.  IIRC the installer just says USB 2.0 will be fully functional after SP1 is installed.  So after you install SP1 you go into device manager and u click update driver and it will auto search and update the driver.
    Simplicity-wise, i guess its pretty much equal.  It might take less preparation to just copy DX9 full onto a CD and install that first, then nforce driver, then right away you have yoru internet connection.
    but i dunno.. i guess i will try it your way this time when my RMA"d board comes.
    i will be fomratting and doing a fresh install later on today and will let you know if i come across any problems

  • After installing latest update Realplayer recording no longer works, I think Mozila is using a library file with the same name

    After installing the latest update to Firefox onto Vista operating system the record part of real player no longer works, I think Mozila and Real are using a library file with the same name and the Mozila update is overwriting a Realplayer library file.

    I was giong to say, "Help me, Adobe Joe Kenobi", but it looks like you're growing a beard waiting for an answer, too.
    The same thing happened to me today. I trusted the "update" message since it was from Adobe, and apprently did so at my own peril. Now I get the "failed to load Core dll" message with a secondary reference to a memory address.
    Just an observation, but what good are these forums when there are no answers? I see this problem as "Caused by Adobe Update", and would expect them to troublshoot and offer up a remedy. Since you've been waiting over two months with no response, I suppose it's time to trek off wasting more of my precious time to fix their problem. If I find the solution, I'll post it back to you.
    May the Force be with you.
    Mark

Maybe you are looking for