Please help track this Internal server error

I am in the process of getting integrated development work with my projects. I am getting this error on trying to access a simple jsp page....
Just having the jsp file extension is enough to trigger this error... I am using WL 10 and java 1.5
Error 500--Internal Server Error
java.lang.ClassCastException: workshop.util.filesystem.file.WlFile
     at workshop.util.filesystem.zip.ArFileSystem.createFileObject(ArFileSystem.java:401)
     at workshop.util.filesystem.zip.ArFileSystem.constructRelative(ArFileSystem.java:270)
     at workshop.util.filesystem.zip.ArFileSystem.constructNoScheme(ArFileSystem.java:257)
     at workshop.util.filesystem.FS.getInternalFile(FS.java:157)
     at workshop.util.filesystem.FS.getIFile(FS.java:181)
     at weblogic.servlet.jsp.JavelinxJSPStub.compilePage(JavelinxJSPStub.java:228)
     at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:216)
     at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:165)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:235)
     at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:394)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:525)
     at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:261)
     at weblogic.servlet.internal.ServletResponseImpl.sendError(ServletResponseImpl.java:733)
     at weblogic.servlet.internal.ServletResponseImpl.sendError(ServletResponseImpl.java:582)
     at weblogic.servlet.JSPServlet.service(JSPServlet.java:171)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)

Hi,
Thanks for the reply! And yes its very frustrating. There is no other reference to this error - and I have the app and all Oracle components (oc4j & Apache) at their maximum log level.
I have logged a SR with Oracle and off course their first response was that it "must be an issue with the 3rd party app". Needless to say the 3rd party vendor suggests I speak to Oracle...Anyway I am still working with Oracle on the SR.
I have in the meantime upgraded to 9041, but I still get the same. I will try 9042 next. I have also started a "Plan B" workaround in my code...
Thanks for the sympathy and any other other insights still most welcome...
Cheers.
Anton.

Similar Messages

  • Please help with "500 Internal Server Error"

    Hi all,
    I get a "500 Internal Server" error when doing some processing with a Java program that makes HTTP calls into an application API deployed as WAR file on a OC4J midtier installation. The process works fine until I get a "500 Internal Server" after about 100 transactions. I can see reference to the 500 error in the Apache access_log, but that is it - no other references whatsoever in any of the logs (OPMN, OC4J, Apache, etc.).
    Can anyone point me to some sort of "500 error troubleshooting guide" or have any suggestions as to how to track the problem down?
    Thank you.
    Anton.

    Hi,
    Thanks for the reply! And yes its very frustrating. There is no other reference to this error - and I have the app and all Oracle components (oc4j & Apache) at their maximum log level.
    I have logged a SR with Oracle and off course their first response was that it "must be an issue with the 3rd party app". Needless to say the 3rd party vendor suggests I speak to Oracle...Anyway I am still working with Oracle on the SR.
    I have in the meantime upgraded to 9041, but I still get the same. I will try 9042 next. I have also started a "Plan B" workaround in my code...
    Thanks for the sympathy and any other other insights still most welcome...
    Cheers.
    Anton.

  • Please help 9iDS - 500 internal server error

    Hi all,
    I got the message 500 internal server error when I run report from form by using WEB.SHOWDOCUMENT. When I test it seperately, both the report and form work fine. But i got this problem when I run report from form. Is anyone have suggestions? I try so many ways but still can't solve this problem. Thank you very much.

    Hi,
    Thanks for the reply! And yes its very frustrating. There is no other reference to this error - and I have the app and all Oracle components (oc4j & Apache) at their maximum log level.
    I have logged a SR with Oracle and off course their first response was that it "must be an issue with the 3rd party app". Needless to say the 3rd party vendor suggests I speak to Oracle...Anyway I am still working with Oracle on the SR.
    I have in the meantime upgraded to 9041, but I still get the same. I will try 9042 next. I have also started a "Plan B" workaround in my code...
    Thanks for the sympathy and any other other insights still most welcome...
    Cheers.
    Anton.

  • Please help with this part of error...

    Hi all,
    Please help me with this error. What i was trying to do is that when Server send a message to client, it print out on the screen what is sent to Client. For instance, if the Message is called FirstMessage sent to Client, the message FirstClient will display from server console with a specific message such as "First Message from server to client: first Message") and so on. I tried to implement the below code but when compiled it i got error message as follows :
    C:\Java\bin>javac QuoteServer.java
    QuoteServer.java:60: <identifier> expected
    out.close();
    ^
    QuoteServer.java:61: <identifier> expected
    in.close();
    ^
    QuoteServer.java:62: <identifier> expected
    clientSocket.close();
    ^
    QuoteServer.java:63: <identifier> expected
    myserverSocket.close();
    ^
    4 errors
    Her is the Server side socket...
    import java.net.*;
    import java.io.*;
    import java.util.*;
    class QuoteServer
    public static void main(String[] args) throws IOException
    ServerSocket myserverSocket = null;
    try
    myserverSocket = new ServerSocket(4998);
    } catch (IOException e)
                        System.err.println("Could not listen on port: 4998.");
                        System.exit(1);
    Socket clientSocket = null;
    try
    clientSocket = myserverSocket.accept();
    } catch (IOException e)
                        System.err.println("Accept failed.");
                        System.exit(1);
                   PrintWriter out = new PrintWriter(clientSocket.getOutputStream(), true);
                   BufferedReader in = new BufferedReader(
                   new InputStreamReader(
                   clientSocket.getInputStream()));
                   String inputLine, outputLine;
                   QuoteProtocol QP = new QuoteProtocol();
                   outputLine = QP.processInput(null);
                   Date current = new Date();
                   out.println(outputLine);
                   String ToClient;
                   while ((inputLine = in.readLine()) != null )
                             outputLine = QP.processInput(inputLine);
                             out.println(outputLine);
                             System.out.println(inputLine);
                             System.out.println(current.toString());
                             /* additional..if doesn't work delete this code*/
                             while ((ToClient = in.readLine()) != null)
                                  System.out.println("Server: " + ToClient);
                                  if (ToClient.equals("Bye."))
                                  break;
                   /* delete up to break*/
                        if (outputLine.equals("Bye."))
                             break;
    out.close();
    in.close();
    clientSocket.close();
    myserverSocket.close();
    Could someone with the expertise advise me what shall i do?
    Thank you very much.
    Audrea.

    Thanks for the quick reply...
    Here is the code with correct open/close braces...
    import java.net.*;
    import java.io.*;
    import java.util.*;
    class QuoteServer
    public static void main(String[] args) throws IOException
    ServerSocket myserverSocket = null;
    try
    myserverSocket = new ServerSocket(4998);
    } catch (IOException e)
                        System.err.println("Could not listen on port: 4998.");
                        System.exit(1);
    Socket clientSocket = null;
    try
    clientSocket = myserverSocket.accept();
    } catch (IOException e)
                        System.err.println("Accept failed.");
                        System.exit(1);
                   PrintWriter out = new PrintWriter(clientSocket.getOutputStream(), true);
                   BufferedReader in = new BufferedReader(
                   new InputStreamReader(
                   clientSocket.getInputStream()));
                   String inputLine, outputLine;
                   QuoteProtocol QP = new QuoteProtocol();
                   outputLine = QP.processInput(null);
                   Date current = new Date();
                   out.println(outputLine);
                   String ToClient;
                   while ((inputLine = in.readLine()) != null )
                             outputLine = QP.processInput(inputLine);
                             out.println(outputLine);
                             System.out.println(inputLine);
                             System.out.println(current.toString());
                             /* additional..if doesn't work delete this code*/
                             while ((ToClient = in.readLine()) != null)
                                  System.out.println("Server: " + ToClient);
                                  if (ToClient.equals("Bye."))
                                  break;
                   /* delete up to break*/
                        if (outputLine.equals("Bye."))
                             break;
    out.close();
    in.close();
    clientSocket.close();
    myserverSocket.close();
    Line 60 starting from out.close(); onwards.
    Please help..
    Thanks a lot.
    Audrea.

  • Please help with this Database Connection error

    Hi,
    there is an asp application related to Invoices that uses RDO object concept to connect to the database. Backend is oracle 10g. Application works fine in retrieving data from several tables except for one part of the application. Here the application needs to display the details of the Invoice once the user puts a checkmark beside the invoice number. The code works in a loop to display each invoice selected.
    Problem is that it works upto about 15 continuous selections and after that it displays this error.
    error '800a9c42'
    IM006: [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed
    This occurs on a line which contains a function that is used to get data from the resultset, which inturn should run a query.
    I tried to increase the timeout for the ODBC connection but to no avail. It uses a DSN connection with Microsoft odbc oracle driver.
    Can any one suggest please?
    Many thanks
    Sri

    Look at http://support.microsoft.com/kb/q264012/
    It is a known issue in MDAC, with an easy solution.

  • 500 internal server error in R12

    while connecting R12 through front end, i am getting below error
    500 Internal Server Error
    java.lang.NoClassDefFoundError     at oracle.apps.fnd.sso.AppsLoginRedirect.AppsSetting(AppsLoginRedirect.java:126)     at oracle.apps.fnd.sso.AppsLoginRedirect.init(AppsLoginRedirect.java:170)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2231)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4617)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4541)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:740)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    could you help me to resolve this issue.

    Hi Venkat;
    It was working before?If yes what have you been changed?(patch etc.) Did you run autuconfig and retest issue?What is your OS?Do you have any error in alert.log?
    Please check below:
    500 Internal Server Error [ID 761869.1]
    "500 Internal Server Error - java.lang.NoClassDefFoundError: oracle.apps.fnd.profiles.Profiles" on 10G [ID 567554.1]
    Also check:
    Starting up AS10g services in an EBusiness Suite Release 12 environment [ID 743518.1]
    Hope it helps
    Regard
    Helios

  • Getting Internal Server Error while using SSPR in IDM 7.1

    Hi All,
    We have implemented SSPR functionality in our IDM 7.1 system and everything was working fine as expected.
    However since last few days we are getting below error, once users is trying to change his password using SSPR.
    He is entering his unique id, then answering the authentication questions correctly, but when he specifies the password and clicks on finis, below error comes up.
    Could anyone please advise.
    500 Internal Server Error
    java.lang.NullPointerException
    at com.sap.idm.wd.wf.task.PwdRecoverComp.SaveData(PwdRecoverComp.java:255)
    at com.sap.idm.wd.wf.task.PwdRecoverComp.MoveNext(PwdRecoverComp.java:293)
    at com.sap.idm.wd.wf.task.wdp.InternalPwdRecoverComp.MoveNext(InternalPwdRecoverComp.java:192)
    at com.sap.idm.wd.wf.task.PwdRecoverCompView.onActionNext(PwdRecoverCompView.java:165)
    at com.sap.idm.wd.wf.task.wdp.InternalPwdRecoverCompView.wdInvokeEventHandler(InternalPwdRecoverCompView.java:193)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
    at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:333)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:741)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:694)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Thanks
    Aditi

    Hi Matt,
    Thanks for you answer.
    Yes, I agree error log is not that helpful.
    There are no errors or any log for that matter in IDM Console side, so I am guessing that error is occurring entirely in Java side.
    I am trying to reset password for ABAP and IDM UI.
    Backend is IDM UME.
    Thanks
    Aditi

  • Internal Server Error (500)

    Hello,
    I am keep getting this Internal Server Error (500) when I am trying to use https://cloud.acrobat.com/send
    Is there a problem with server in general or is it specific to my account?
    How can I resolve this and start using it again?
    Thank you for your help.
    Jim

    I have the exact same problem. Were you able to resolve the issue? If so, what did you have to do?
    -saidul

  • Error 500--Internal Server Error.PLEASE   HELP .

    hi,
    I am using BEA weblogic server 9.0.i created a new domain named myproject.I have created directory mywebapp under applications dir.
    i.e C:\bea\user_projects\domains\myproject\applications\mywebapp
    I have placed my servlet class in :
    C:\bea\user_projects\domains\myproject\applications\mywebapp\WEB-INF\classes\Mypackage
    I deployed my apllication mywebapp using admin console.
    when i run the program in the browser,i get this error:
    Error 500--Internal Server Error
    javax.servlet.ServletException: [HTTP:101249][weblogic.servlet.internal.WebAppServletContext@17e5fde - name: 'mywebapp', context-path: '/mywebapp']: Servlet class HelloServlet for servlet myHello could not be loaded because the requested class was not found in the classpath C:\bea\user_projects\domains\myproject\applications\mywebapp\WEB-INF\classes.
    java.lang.ClassNotFoundException: HelloServlet.
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:497)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:234)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:2970)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1888)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1810)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1274)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:167)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:139)
    what should i do?please help me.
    bye

    you are reason our error is slightly different is
    Error 500--Internal Server Error
    javax.servlet.ServletException: [HTTP:101249][ServletContext(id=21255917,name=BonusRoot,context-path=/BonusRoot)]: Servlet class Beans.BonusServlet for servlet BonusServlet could not be loaded because the requested class was not found in the classpath C:\bea\weblogic81\samples\domains\workshop\cgServer\.wlnotdelete\essai\war-ic.war.
    java.lang.ClassNotFoundException: Beans.BonusServlet.
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:799)
         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:518)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:362)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    We have try with your proposition but we find the same error
    we must request servlet??? because i've one
    package Beans;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    public class BonusServlet extends HttpServlet {
      CalcHome homecalc;
      public void init(ServletConfig config) throws ServletException{
    //Look up home interface
       try {
         InitialContext ctx = new InitialContext();
         Object objref = ctx.lookup("calcs");
         homecalc = (CalcHome)PortableRemoteObject.narrow(objref, CalcHome.class);
       } catch (Exception NamingException) {
         NamingException.printStackTrace();
      public void doGet (HttpServletRequest request,
         HttpServletResponse response)
         throws ServletException, IOException
        String socsec = null;
        int multiplier = 0;
        double calc = 0.0;
        PrintWriter out;
        response.setContentType("text/html");
        String title = "EJB Example";
        out = response.getWriter();
        out.println("<HTML><HEAD><TITLE>");
        out.println(title);
        out.println("</TITLE></HEAD><BODY>");
        try{
        Calc theCalculation;
    //Retrieve Bonus and Social Security Information
       String strMult =
               request.getParameter("MULTIPLIER");
       Integer integerMult = new Integer(strMult);
       multiplier = integerMult.intValue();
       socsec = request.getParameter("SOCSEC");
    //Calculate bonus
        double bonus = 100.00;
        theCalculation = homecalc.create();
        calc = theCalculation.calcBonus(multiplier, bonus);
        }catch(Exception CreateException){
           CreateException.printStackTrace();
    //Display Data
        out.println("<H1>Bonus Calculation</H1>");
        out.println("<P>Soc Sec: " + socsec + "<P>");
        out.println("<P>Multiplier: " + multiplier + "<P>");
        out.println("<P>Bonus Amount: " + calc + "<P>");
        out.println("</BODY></HTML>");
        out.close();
      public void destroy() {
        System.out.println("Destroy");
    }Help us please
    Thanks

  • 500 Internal Server Error again pleas (including log file)..please help

    1. After i unziped and installed jdeveloper to:
    C:\Jdevstudio successfully
    2. Then i created the untitled1.jsp page ---> only showed Hello world and save
    3. the Embedded OC4J Server compiled successfully ..i thought this meant nothing wrong with the code.
    Successful compilation:0 errors, 0 warnings..
    4. But when i looked into the Embedded OC4J Server-Log
    i found the error :
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\Jdevstudio\jdev\system\oracle.j2ee.10.1.3.39.84\embedded-oc4j\config>
    C:\Jdevstudio\jdk\bin\javaw.exe -client -classpath C:\Jdevstudio\j2ee\home\oc4j.jar;C:\Jdevstudio\jdev\lib\jdev-oc4j-embedded.jar -Dhttp.proxyHost=wwwcache.aber.ac.uk -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=*.aber.ac.uk|localhost|127.0.0.1|win2006 -Dhttps.proxyHost=wwwcache.aber.ac.uk -Dhttps.proxyPort=8080 -Dhttps.nonProxyHosts=*.aber.ac.uk|localhost|127.0.0.1|win2006 -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\Jdevstudio\jdev\system\oracle.j2ee.10.1.3.39.84\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    14 ส.ค. 2551 15:30:33 com.evermind.server.XMLDataSourcesConfig parseRootNode
    INFO: Legacy datasource detected...attempting to convert to new syntax.
    14 ส.ค. 2551 15:30:34 com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    14 ส.ค. 2551 15:30:34 com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 7813 ms.
    Target URL -- http://144.124.120.45:8988/Application1-view-context-root/faces/untitled1.jsp
    51/08/14 15:30:38 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
    This caused 500 Internal Server error
    5. Then i went to Tools--> Preferences--> Deployment--> unchecked Bundle Default data-source.xml During Deployment...
    I got less error showing:
    C:\Jdevstudio\jdk\bin\javaw.exe -jar C:\Jdevstudio\j2ee\home\admin.jar ormi://144.124.120.45:23891 oc4jadmin **** -updateConfig
    14 ส.ค. 2551 15:33:58 com.oracle.corba.ee.impl.orb.ORBServerExtensionProviderImpl preInitApplicationServer
    WARNING: ORB ignoring configuration changes. Restart OC4J to apply new ORB configuration.
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 8109 ms.
    Target URL -- http://144.124.120.45:8988/Application1-view-context-root/faces/untitled1.jsp
    This still caused 500 Internal Server Error
    6. I still did know the real problems then i read the installation guide of jdev
    is it necessary to set the JavaHome in C:\Jdevstudio\jdev\bin\jdev.conf
    or do i need to set ORACLEHome in this file
    7. from the log file the server called Jdk under Jdevstudio\jdk\bin\javaw.exe -jar
    it seemed fine...
    8. Anything wrong with admin.jar....
    9. is the problem from setting not setting jdk (javahome) or admin.jar...or OC4J problems please help
    i would appreciate you help
    thank you

    i deleted pesistence directory like what you said but i found the bigger error in the log ...
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\Jdevstudio\jdev\system\oracle.j2ee.10.1.3.39.84\embedded-oc4j\config>
    C:\Jdevstudio\jdk\bin\javaw.exe -client -classpath C:\Jdevstudio\j2ee\home\oc4j.jar;C:\Jdevstudio\jdev\lib\jdev-oc4j-embedded.jar -Dhttp.proxyHost=wwwcache.aber.ac.uk -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=*.aber.ac.uk|localhost|127.0.0.1|win2006 -Dhttps.proxyHost=wwwcache.aber.ac.uk -Dhttps.proxyPort=8080 -Dhttps.nonProxyHosts=*.aber.ac.uk|localhost|127.0.0.1|win2006 -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\Jdevstudio\jdev\system\oracle.j2ee.10.1.3.39.84\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    14 ส.ค. 2551 17:05:46 com.evermind.server.jms.JMSMessages log
    SEVERE: Failed to set the internal configuration of the OC4J JMS Server with: XMLJMSServerConfig[file:/C:/Jdevstudio/jdev/system/oracle.j2ee.10.1.3.39.84/embedded-oc4j/config/jms.xml]
    java.lang.InstantiationException: The system cannot find the path specified
         at com.evermind.server.jms.JMSUtils.make(JMSUtils.java:1072)
         at com.evermind.server.jms.JMSUtils.toInstantiationException(JMSUtils.java:1237)
         at com.evermind.server.jms.JMSServer.recoverState(JMSServer.java:1831)
         at com.evermind.server.jms.JMSServer.internalSetConfig(JMSServer.java:209)
         at com.evermind.server.jms.JMSServer.setConfig(JMSServer.java:182)
         at com.evermind.server.ApplicationServer.initializeJMS(ApplicationServer.java:2412)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:955)
         at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.io.IOException: The system cannot find the path specified
         at java.io.WinNTFileSystem.createFileExclusively(Native Method)
         at java.io.File.createNewFile(File.java:850)
         at com.evermind.server.jms.ServerFile.safeOpenFile(ServerFile.java:775)
         at com.evermind.server.jms.ServerFile.access$000(ServerFile.java:77)
         at com.evermind.server.jms.ServerFile$2.run(ServerFile.java:719)
         at oracle.oc4j.security.OC4JSecurity.doUnprivileged(OC4JSecurity.java:325)
         at com.evermind.server.jms.ServerFile.openFile(ServerFile.java:716)
         at com.evermind.server.jms.ServerFile.<init>(ServerFile.java:133)
         at com.evermind.server.jms.PersistentMap.loadFile(PersistentMap.java:100)
         at com.evermind.server.jms.PersistentMap.<init>(PersistentMap.java:61)
         at com.evermind.server.jms.JMSServer.recoverState(JMSServer.java:1823)
         ... 6 more
    51/08/14 17:05:46 *** (SEVERE) Failed to set the internal configuration of the OC4J JMS Server with: XMLJMSServerConfig[file:/C:/Jdevstudio/jdev/system/oracle.j2ee.10.1.3.39.84/embedded-oc4j/config/jms.xml]
    14 ส.ค. 2551 17:05:46 com.evermind.server.ServerMessages severeJmsServerStartupException
    SEVERE: JMS: Failed to set the internal configuration of the OC4J JMS Server with: XMLJMSServerConfig[file:/C:/Jdevstudio/jdev/system/oracle.j2ee.10.1.3.39.84/embedded-oc4j/config/jms.xml]
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 7719 ms.
    Target URL -- http://144.124.120.45:8988/Application1-view-context-root/faces/untitled1.jsp
    51/08/14 17:05:50 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
    anything problems that came from admin.jar..????

  • Internal Server Error; Live View not working...please help:)

    I am a beginner doing a tutorial through David Sawyer McFarlands' "CS5: The Missisng Manual.  I have MAMP set up and working fine.  I just got through doing a tutorial on editing a recordset and linking to a Detail page.  I have used Live View just a few minutes ago and it was working fine.  However I just tried to click live view again after completing this part of the tutorial and a pop up box says "dynamically-related files could not be resolved because of an internal server error".  I have no idea what this error could be.  When I type http://localhost/ in my browser it shows a file on the dynamic website we are working on called cosmo_shop.  But when I type http://localhost/cosmo_shop the screen goes blank....Can someone help me with this???

    frankieb83 wrote:
    I have no idea what this error could be.  When I type http://localhost/ in my browser it shows a file on the dynamic website we are working on called cosmo_shop.  But when I type http://localhost/cosmo_shop the screen goes blank....Can someone help me with this???
    Nobody else is likely to have any idea what the error is without seeing the code of the page you're working on. However, you might find Why is my PHP page blank? in the Dreamweaver FAQ points you in the right direction.
    Since you're new to these forums, you might also like to take a look at How to get help quickly.

  • My Canon MP620 appears to be connected, yet every time I try to print something, it says error.  I have tried to unplug and track the error, but I cannot figure out why. Please help! this is such an inconvenience!

    My Canon MP620 appears to be connected, yet every time I try to print something, it says error.  I have tried to unplug and track the error, but I cannot figure out why. Please help! this is such an inconvenience!

    What Mac model? What Mac OS version?
    FYI, this forum is for Apple hardware made before 1999.

  • I have 500 internal server error on all my iPods/iPads today. Can anyone please help?

    Hi. We have two ipod gen 5, one iPad 2 and one iPad air. Since thus morning we can get very limited internet access. Constantly getting the message "500 internal server error". We upgraded two days ago to bt hone hub 4 and though this may be the issue but Bt assure me it's nog their fault? Does anyone have an idea how to solve this. Also I'm not a computer genius so it would have to be in layman terms!!! Thanks in anticipation

    Has anyone else experienced this as it's giving me a headache now x

  • SharePoint List Error :[DataSource.Error] SharePoint: Request failed: The remote server returned an error: (500) Internal Server Error. (An error occurred while processing this request.)

    When I connect to the SharePoint site that contains the lists I need to build my query from , Power Query enumerates the list and displays them in the tool. I can click on the system tables and view the records but any table
    in the list I created returns this  error.
    I can connect fine with InfoPath
    [DataSource.Error] SharePoint:   Request failed: The remote server returned an error: (500) Internal Server   Error. (An error occurred while processing this request.)
    thank you for your help
    Andrew
     

    Hi Andrew. In order for us diagnose this issue, you'll need to capture some network traces using a tool such as Fiddler and share them by sending a Frown.
    To capture a trace using Fiddler, start Fiddler, enable the Tools > Fiddler Options > HTTPS > Decrypt HTTPS traffic option, start the capture, reproduce your issue, then stop and save the capture. You can find more information here.
    Once you've done that, please send a Frown through the Power Query ribbon and attach the traces.
    Thanks,
    Ehren

  • Urgent help On as2 error The remote server returned an error: (500) Internal Server Error.

    hi,
    im configured the as2 partner setup as per this http://msdn.microsoft.com/en-us/library/bb246129(BTS.20).aspx.
    but when im process file , then file try hit partner url goes dyhradated state,then failed. then i got below error.
    The remote server returned an error: (500) Internal Server Error.
    please any help..
    Thanks

    500 server error could be due to anyone of the following reasons:
    Party configuration is wrong. Party properties/configurations have  to be discussed upfront with the source/destination system and have to be in-line with
    them.
    Certificates have to be deployed in correct folders based on      certificate types like private/public/signed etc.
    Firewall (or network components) has to be opened accordingly for parties(systems) to interact. This change has to be done at the both the levels, source and destination.
    If you receive it through HTTPReceive.dll (may uses this for AS2), you have to check its configurations.
    Also 500 error, could occur even if your BizTalk artifacts has not been configured/deployed/enabled properly.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

Maybe you are looking for

  • Macbook pro - no thumbnails in Bridge CS4

    Hello to you all, I've just purchased a new MacBook Pro & Photoshop Elements 8.0. I have installed Elements & made sure I have got the latest updates. The Mac is running Mac OS X v 10.6.4 When I open up the bridge to organise my photos it shows "MacH

  • HP System Recovery DVD is not working

    I've downgraded my HP 15-e0001ed from W8 to W7. I removed EVERYTHING from Windows 8, including the recovery partition en I did not make a recovery disk/back up (or something else) to eventually restore my OS to W8.  During the use of W7, i noticed th

  • Having trouble downloading adobe update on safari

    I am having trouble downloading adobe update on safari on my desktop, running maverick, and and older macbook running snow leopard

  • Transfer to Other Accounts

    Can you please post about 50 entires in Input VAT account and 50 in Output VAT Account through FI JV and then transfer these line items to VAT Vendor A/c u2013 if needed create one Vendor Can any one tell me what exactly this  line means

  • PSE10 crashes when opening 3rd file (I use a Mac)

    Error message: Exception Type:  EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 I've tried re-starting my computer....