Internal (Oracle) Error of JPS/WSRP Output

The system consists of upgrated portal (AS 1.2 + Portal 1.4) with dedicated OC4j container (in the same server) where JPS/WSRP portlets are installed. When testing my portlets I've founded the error I'm writing about.
Sometimes portlet fails to show the result. This error is caused not by an exception raised while generating the output HTML, but after this, when execution exits the rendering entry point of the portel (doDispatch() methof of GenericPortlet). No this is a problem of some side-effect: I've saved the output into the file and then written the portlet just outputing this file into portlet_response.getPortletOutputStream() (UTF-8 HTML).
I found that this error is HTML-output depended. I slightly modified that HTML file, just added a space in its middle, and the error disappeared.
NOTE THAT IT IS NOT JUST THE PROBLEM OF MINE. Everybody creating JSR portlets may meet it. It is an error somewhere within wsrp-install.jar implementation.
If those who responsible for JSR portlets implementation needs the error file, I can send it. (I've met this error not once, with different HTML content.)

The system consists of upgrated portal (AS 1.2 + Portal 1.4) with dedicated OC4j container (in the same server) where JPS/WSRP portlets are installed. When testing my portlets I've founded the error I'm writing about.
Sometimes portlet fails to show the result. This error is caused not by an exception raised while generating the output HTML, but after this, when execution exits the rendering entry point of the portel (doDispatch() methof of GenericPortlet). No this is a problem of some side-effect: I've saved the output into the file and then written the portlet just outputing this file into portlet_response.getPortletOutputStream() (UTF-8 HTML).
I found that this error is HTML-output depended. I slightly modified that HTML file, just added a space in its middle, and the error disappeared.
NOTE THAT IT IS NOT JUST THE PROBLEM OF MINE. Everybody creating JSR portlets may meet it. It is an error somewhere within wsrp-install.jar implementation.
If those who responsible for JSR portlets implementation needs the error file, I can send it. (I've met this error not once, with different HTML content.)

Similar Messages

  • Internal Oracle Error in SYS.UTL_HTTP.READ_TEXT - ORA-6512 @ line 1336

    I have a PLSQL program that performs an HTTP POST to fetch data from an external website. The website is returning the contents of a file in the HTTP response. This program has been working for years and just started giving us trouble recently at a particular client. The issue cannot be reproduced locally, only on a specific client machine when trying to download a particular set of XML files through this HTTP interface.
    The stack trace is:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1336
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.UTL_HTTP", line 1336The code in question is:
    PROCEDURE SEND_REQUEST
        p_REQUEST      IN CLOB,
        p_RESPONSE     OUT CLOB,
        p_HEADERNAMES  OUT STRING_COLLECTION,
        p_HEADERVALUES OUT STRING_COLLECTION,
        p_ERRORMESSAGE OUT VARCHAR2
    ) IS
        v_HTTP_REQ    UTL_HTTP.REQ;
        v_HTTP_RESP   UTL_HTTP.RESP;
        v_REQUEST_LEN NUMBER;
        v_POS         NUMBER;
        v_COUNT       NUMBER;
        v_TEXT        VARCHAR2(8192);
        v_LEN         NUMBER;
    BEGIN
        -- raise Request_Failed error if an HTTP error occurs
        UTL_HTTP.SET_RESPONSE_ERROR_CHECK(TRUE);
        UTL_HTTP.SET_DETAILED_EXCP_SUPPORT(FALSE);
        -- extend timeout to 10 minutes
        UTL_HTTP.SET_TRANSFER_TIMEOUT(60 * 10);
        v_HTTP_REQ := UTL_HTTP.BEGIN_REQUEST(G_URL, 'POST');
        -- disable cookies for this request
        UTL_HTTP.SET_COOKIE_SUPPORT(v_HTTP_REQ, FALSE);
        -- authentication
        IF g_USERNAME IS NOT NULL THEN
            UTL_HTTP.SET_AUTHENTICATION(v_HTTP_REQ, g_USERNAME, g_PASSWORD);
        END IF;
        -- upload request body
        v_REQUEST_LEN := DBMS_LOB.GETLENGTH(p_REQUEST);
        UTL_HTTP.SET_HEADER(v_HTTP_REQ, 'Content-Type', 'application/x-www-form-urlencoded');
        UTL_HTTP.SET_HEADER(v_HTTP_REQ, 'Content-Length', v_REQUEST_LEN);
        -- write the CLOB request data
        v_POS := 1;
        WHILE v_POS <= v_REQUEST_LEN LOOP
            v_LEN := 8192;
            DBMS_LOB.READ(p_REQUEST, v_LEN, v_POS, v_TEXT);
            UTL_HTTP.WRITE_TEXT(v_HTTP_REQ, v_TEXT);
            v_POS := v_POS + v_LEN;
        END LOOP;
        -- get the response
        v_HTTP_RESP := UTL_HTTP.GET_RESPONSE(v_HTTP_REQ);
        -- read it into CLOB
        DBMS_LOB.CREATETEMPORARY(p_RESPONSE, TRUE);
        DBMS_LOB.OPEN(p_RESPONSE, DBMS_LOB.LOB_READWRITE);
        LOOP
            BEGIN           
                UTL_HTTP.READ_TEXT(v_HTTP_RESP, v_TEXT, 8192);       
            EXCEPTION
                WHEN UTL_HTTP.END_OF_BODY THEN
                    ERRS.LOG_AND_CONTINUE('Send_Request: Exeception occurred reading text from the http response.',
                                          p_LOG_LEVEL => LOGS.C_LEVEL_INFO_MORE_DETAIL);
                    v_TEXT := '';
            END;
            EXIT WHEN NVL(LENGTH(v_TEXT), 0) = 0;   
            DBMS_LOB.WRITEAPPEND(p_RESPONSE, LENGTH(v_TEXT), v_TEXT);
        END LOOP;
        DBMS_LOB.CLOSE(p_RESPONSE);
        -- gather response headers
        p_HEADERNAMES := STRING_COLLECTION();
        p_HEADERVALUES := STRING_COLLECTION();
        v_COUNT := UTL_HTTP.GET_HEADER_COUNT(v_HTTP_RESP);
        v_POS := 1;
        WHILE v_POS <= v_COUNT LOOP
            p_HEADERNAMES.EXTEND();
            p_HEADERVALUES.EXTEND();   
            UTL_HTTP.GET_HEADER(v_HTTP_RESP, v_POS, p_HEADERNAMES(p_HEADERNAMES.LAST), p_HEADERVALUES(p_HEADERVALUES.LAST));
            v_POS := v_POS + 1;   
        END LOOP;
        UTL_HTTP.END_RESPONSE(v_HTTP_RESP);
        -- success!
        p_ERRORMESSAGE := NULL;
    EXCEPTION
        WHEN UTL_HTTP.REQUEST_FAILED THEN
            ERRS.LOG_AND_CONTINUE('Send_Request: Exeception Request Failed caught.', p_LOG_LEVEL => LOGS.C_LEVEL_INFO_MORE_DETAIL);   
        WHEN OTHERS THEN
            ERRS.LOG_AND_CONTINUE('Send_Request: Exeception Others caught.', p_LOG_LEVEL => LOGS.C_LEVEL_INFO_MORE_DETAIL);   
    END SEND_REQUEST;It fails specifically at the section that is reading text from the response:
    UTL_HTTP.READ_TEXT(v_HTTP_RESP, v_TEXT, 8192);
    ...Any thoughts?
    I have used a packet sniffer, Wireshark, to monitor the HTTP traffic between the website and database during the issue. There is nothing malformed with the Response content. No special chars that I can find. Etc.
    The machine in question that is failing is running 10gR2.
    I have done some searching and I found this forum post:
    utl_http.read_text and multi-byte support
    and this Oracle bug:
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=4015165&productFamily=Oracle
    Not really much help.
    Any help would be appreciated.
    Thanks,
    GatorPaul
    Edited by: 939368 on Jun 7, 2012 2:27 PM

    In this case, and most cases, the NLS_LENGTH_SEMANTICS is set to 'BYTE'. Realize that this is an Oracle application that we deploy into an external customer environment and we do not always have the ability to control NLS Settings.
    So, based on your explanation, I would expect that an approach like this would fix it:
    v_TEXT VARCHAR2(32766);
    UTL_HTTP.READ_TEXT(v_HTTP_RESP, v_TEXT, 8192);
    Here we are saying, get the next 8192 characters, but put that into a buffer that allows up to 32K bytes. This should allow for the enough room for up to 4 bytes per character. Am I understanding you correctly?
    But here is my question:
    I put a fix in place today, where I increased both the v_TEXT byte size and the GET_TEXT 'len' parameter to 32766 and it fixed the issue. By doing that, I am telling it: Give me the next 32766 characters and put it into a VARCHAR2(32766). Given your explanation, I would expect this to overflow the v_TEXT variable as well, or at least have the potential to do so.
    We were processing 5 different XML responses. They were all failing originally. After the change, they all passed. Their sizes were 47K, 21K, 14K, 48K, and 21K. If the XML file was small, < 32K then maybe is slipped under the radar given the new buffer size of 32766. But what about the 2 files that were over 32K. Very curious on your thoughts. I did not have a loop counter in there to see how many times it was looping to parse the 48K file. With a new buffer size of 32K I would expect it to loop 2x. But, I know in this case, the file was streamed over the network using 14 smaller TCP packets, none of which were more than 9000 bytes. Maybe the PLSQL looped 14 times as well.
    When the process was failing for all 5 files, I do know at that time it was always failing on the first loop (first 8192 characters).
    Anyway, Thanks for the advice. I will let you guys know if I uncover anymore info.
    G8torPaul
    Edited by: G8torPaul on Jun 12, 2012 2:04 PM
    Edited by: G8torPaul on Jun 12, 2012 2:04 PM
    Edited by: G8torPaul on Jun 12, 2012 2:05 PM

  • Oracle error ORA-00600 when using Oracle 10g and Sun One Web Server 6.1

    I have a java application that was running under Solaris 8 and Oracle 9i. I am trying to get it up and running on a new server that is configured with Solaris 9 and Oracle 10g. Whenever the application tries to connect to the database it receives the following error: ORA-00600 [ttcgcshnd-1][0]. My research indicates that this is an internal Oracle error that represents a low level unexpected condition. I have looked through my configuration for the Web Server and I have not been able to determine the cause of this problem. My DBA tells me that we have the latest patch installed for Oracle! Has anyone encountered this problem before? Any help would be greatly appreciated!

    If the problem is also present in a SWING app, i.e. outside the web server, then it is porbably something external to the webserver.
    I think you should ensure that the driver and database are compatible with each other. It is very likely that you need a new jdbc driver for the new database.
    download from here http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101020.html
    try the ojdbc14.jar

  • Oracle AS "Internal Server Error" (logs are available)

    Hello,
    There is a J2EE web application that runs on Oracle AS 10g. Configuration is as follows:
    Oracle AS 10g
    Oracle DB 10g
    Oracle Content Management SDK
    It randomly gives "Internal Server Error" but there is no explanation about what really is wrong. If you wait and try again, you can access the page that gave error previously. I use Internet Explorer 8 to access the application.
    I tried restarting application server, even restarting operating system. no luck.
    I also tried renewing classes12.jar jdbc driver. No change.
    You may find some logs below. I can not paste whole log output here as it is to much. Only latest a few lines that may help about what is wrong.
    #########################################################################################################3
    ## HERE IS HTTP SERVER LOG ##
    [Wed Sep 15 13:58:18 2010] [error] [client 10.100.20.107] [ecid: 3265292608196,1] MOD_OC4J_0119: Failed to get an oc4j process for destination:
    FLK_KYS
    [Wed Sep 15 13:58:18 2010] [error] [client 10.100.20.107] [ecid: 3265292608196,1] MOD_OC4J_0013: Failed to call destination: FLK_KYS's
    service() to service the request.
    [Wed Sep 15 14:00:13 2010] [error] [client 10.100.20.107] [ecid: 1284548411:10.100.20.107:13356:10460:1,0] MOD_OC4J_0138: Failed to validate
    network worker: OC4J_iFS_cmsdk_14 with host: kystest and port: 18701064.
    [Wed Sep 15 14:00:13 2010] [error] [client 10.100.20.107] [ecid: 1284548411:10.100.20.107:13356:10460:1,0] MOD_OC4J_0141: Failed to validate
    host: kystest and port 12502 for network worker: OC4J_iFS_cmsdk_14.
    [Wed Sep 15 14:00:13 2010] [error] [client 10.100.20.107] [ecid: 1284548411:10.100.20.107:13356:10460:1,0] MOD_OC4J_0147: Failed to get
    a network worker with host: kystest, port: 12502 and opmnid=862978541
    [Wed Sep 15 14:00:13 2010] [error] [client 10.100.20.107] [ecid: 1284548411:10.100.20.107:13356:10460:1,0] MOD_OC4J_0119: Failed to get
    an oc4j process for destination: OC4J_iFS_cmsdk
    [Wed Sep 15 14:00:13 2010] [error] [client 10.100.20.107] [ecid: 1284548411:10.100.20.107:13356:10460:1,0] MOD_OC4J_0013: Failed to call
    destination: OC4J_iFS_cmsdk's service() to service the request.
    [Wed Sep 15 14:02:54 2010] [error] [client 10.110.30.104] [ecid: 1284548574:10.100.20.107:13356:12512:21,0] File does not exist: c:/oracle_as/ora10as/apache/apache/htdocs/favicon.ico
    [Wed Sep 15 14:03:26 2010] [error] [client 10.100.20.107] [ecid: 3522990960342,1] MOD_OC4J_0138: Failed to validate network worker: FLK_KYS_14
    with host: kystest and port: 19114312.
    [Wed Sep 15 14:03:26 2010] [error] [client 10.100.20.107] [ecid: 3522990960342,1] MOD_OC4J_0141: Failed to validate host: kystest and
    port 12507 for network worker: FLK_KYS_14.
    [Wed Sep 15 14:03:26 2010] [error] [client 10.100.20.107] [ecid: 3522990960342,1] MOD_OC4J_0147: Failed to get a network worker with host:
    kystest, port: 12507 and opmnid=862978548
    [Wed Sep 15 14:03:26 2010] [error] [client 10.100.20.107] [ecid: 3522990960342,1] MOD_OC4J_0119: Failed to get an oc4j process for destination:
    FLK_KYS
    [Wed Sep 15 14:03:26 2010] [error] [client 10.100.20.107] [ecid: 3522990960342,1] MOD_OC4J_0013: Failed to call destination: FLK_KYS's
    service() to service the request.
    [Wed Sep 15 14:05:02 2010] [error] [client 10.100.20.107] [ecid: 3540170928644,1] MOD_OC4J_0138: Failed to validate network worker: OC4J_iFS_cmsdk_14
    with host: kystest and port: 18701096.
    [Wed Sep 15 14:05:02 2010] [error] [client 10.100.20.107] [ecid: 3540170928644,1] MOD_OC4J_0141: Failed to validate host: kystest and
    port 12502 for network worker: OC4J_iFS_cmsdk_14.
    [Wed Sep 15 14:05:02 2010] [error] [client 10.100.20.107] [ecid: 3540170928644,1] MOD_OC4J_0147: Failed to get a network worker with host:
    kystest, port: 12502 and opmnid=862978541
    [Wed Sep 15 14:05:02 2010] [error] [client 10.100.20.107] [ecid: 3540170928644,1] MOD_OC4J_0119: Failed to get an oc4j process for destination:
    OC4J_iFS_cmsdk
    [Wed Sep 15 14:05:02 2010] [error] [client 10.100.20.107] [ecid: 3540170928644,1] MOD_OC4J_0013: Failed to call destination: OC4J_iFS_cmsdk's
    service() to service the request.
    [Wed Sep 15 14:07:35 2010] [error] [client 10.110.30.104] [ecid: 1284548855:10.100.20.107:13356:14308:4,0] File does not exist: c:/oracle_as/ora10as/apache/apache/htdocs/favicon.ico
    [Wed Sep 15 14:08:16 2010] [error] [client 10.100.20.107] [ecid: 1284548894:10.100.20.107:13356:11700:5,0] MOD_OC4J_0138: Failed to validate
    network worker: home_14 with host: kystest and port: 18560608.
    [Wed Sep 15 14:08:16 2010] [error] [client 10.100.20.107] [ecid: 1284548894:10.100.20.107:13356:11700:5,0] MOD_OC4J_0141: Failed to validate
    host: kystest and port 12503 for network worker: home_14.
    [Wed Sep 15 14:08:16 2010] [error] [client 10.100.20.107] [ecid: 1284548894:10.100.20.107:13356:11700:5,0] MOD_OC4J_0147: Failed to get
    a network worker with host: kystest, port: 12503 and opmnid=862978540
    [Wed Sep 15 14:08:16 2010] [error] [client 10.100.20.107] [ecid: 1284548894:10.100.20.107:13356:11700:5,0] MOD_OC4J_0119: Failed to get
    an oc4j process for destination: home
    [Wed Sep 15 14:08:16 2010] [error] [client 10.100.20.107] [ecid: 1284548894:10.100.20.107:13356:11700:5,0] MOD_OC4J_0013: Failed to call
    destination: home's service() to service the request.
    ### HERE IS CMSDK LOG: ###
    10/09/15 13:53:51 cmsdk: SocketRemoter: Initialized
    10/09/15 13:53:52 cmsdk: NodeGuardian: Log level set to 4
    10/09/15 13:53:52 cmsdk: NodeManager: Log level set to 4
    10/09/15 13:53:52 cmsdk: NodeGuardian: Remoter log level set to 2
    10/09/15 13:53:52 cmsdk: NodeManager: Remoter log level set to 2
    10/09/15 13:53:52 cmsdk: NodeGuardian: Node manager registered
    10/09/15 13:53:52 cmsdk: NodeManager: Ready
    10/09/15 13:53:52 cmsdk: NodeManager: Initialize: determining default services and servers
    10/09/15 13:53:52 cmsdk: NodeManager: Initialize: starting service IfsDefaultService
    10/09/15 13:53:52 cmsdk: NodeManager: Service IfsDefaultService started
    10/09/15 13:53:52 cmsdk: NodeManager: Initialize: loading server HttpAdminServer
    10/09/15 13:53:53 cmsdk: NodeManager: Server HttpAdminServer loaded
    10/09/15 13:53:53 cmsdk: NodeManager: Initialize: setting priority of server HttpAdminServer to 5
    10/09/15 13:53:53 cmsdk: HttpAdminServer: Priority change requested (old priority 5, new priority 5)
    10/09/15 13:53:53 cmsdk: NodeManager: Initialize: starting server HttpAdminServer
    10/09/15 13:53:53 cmsdk: HttpAdminServer: Requested to start
    10/09/15 13:53:53 cmsdk: NodeManager: Initialize: loading server DavServer
    10/09/15 13:53:53 cmsdk: HttpAdminServer: Starting
    10/09/15 13:53:53 cmsdk: AdminServlet: [AdminAppServlet 1] start() called.
    10/09/15 13:53:53 cmsdk: AdminServlet: [AdminAppServlet 1] Initializing HTTP app ...
    10/09/15 13:53:53 cmsdk: AdminServlet: [AdminAppServlet 1] HTTP app initialized.
    10/09/15 13:53:54 cmsdk: AdminServlet: [AdminAppServlet 1] Calling subclass startServlet()
    10/09/15 13:53:54 cmsdk: AdminServlet: [AdminAppServlet 1] Subclass startServlet() returned.
    10/09/15 13:53:54 cmsdk: AdminServlet: [AdminAppServlet 1] start() done, time = 735 ms.
    10/09/15 13:53:54 cmsdk: HttpAdminServer: Started
    10/09/15 13:53:54 cmsdk: NodeManager: Server DavServer loaded
    10/09/15 13:53:54 cmsdk: NodeManager: Initialize: setting priority of server DavServer to 5
    10/09/15 13:53:54 cmsdk: DavServer: Priority change requested (old priority 5, new priority 5)
    10/09/15 13:53:54 cmsdk: NodeManager: Initialize: starting server DavServer
    10/09/15 13:53:54 cmsdk: DavServer: Requested to start
    10/09/15 13:53:54 cmsdk: NodeManager: Initialize: loading server ServiceWarmupAgent
    10/09/15 13:53:54 cmsdk: DavServer: Starting
    10/09/15 13:53:54 cmsdk: DavServer: Started
    10/09/15 13:53:54 cmsdk: NodeManager: Server ServiceWarmupAgent loaded
    10/09/15 13:53:54 cmsdk: NodeManager: Initialize: setting priority of server ServiceWarmupAgent to 5
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: Priority change requested (old priority 5, new priority 5)
    10/09/15 13:53:54 cmsdk: NodeManager: Initialize: starting server ServiceWarmupAgent
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: Requested to start
    10/09/15 13:53:54 cmsdk: NodeManager: Initialize: complete
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: Starting
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: Started
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: Starting
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: Service warmup starting
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: set administration mode
    10/09/15 13:53:54 cmsdk: ServiceWarmupAgent: warming up Format cache
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: warming up Media cache
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: Service warmup complete
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: Stopping Service Warmup Agent
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: Requested to stop
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: Stopping
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: Timer stopped
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: postRun
    10/09/15 13:53:57 cmsdk: ServiceWarmupAgent: Stopped
    10/09/15 14:00:00 cmsdk: IfsUix: [AJPRequestHandler-ApplicationServerThread-5-19475730 IfsUixPageBroker] (WS-1 LS-0 NotConnected) Request:
    Page[name=HomePage] null
    10/09/15 14:00:00 cmsdk: IfsUix: [AJPRequestHandler-ApplicationServerThread-5-19475730 IfsUixPageFlowEngine] No ClientState found for:
    null Using default ClientState
    10/09/15 14:00:00 cmsdk: IfsUix: [AJPRequestHandler-ApplicationServerThread-5-19475730 IfsUixPageBroker] Event Time = 140 ms.
    10/09/15 14:00:00 cmsdk: IfsUix: [AJPRequestHandler-ApplicationServerThread-5-19475730 IfsUixPageBroker] (WS-1 LS-0 NotConnected) Render:
    Page[name=admin/page/HomePage,CS=1,PP=admin/page/HomePage] CS: 1 true -- --
    10/09/15 14:00:02 cmsdk: IfsUix: [AJPRequestHandler-ApplicationServerThread-5-19475730 IfsUixPageBroker] Rendering Time = 1328 ms.
    10/09/15 14:00:30 cmsdk: DavServlet: init
    10/09/15 14:00:30 cmsdk: DavServlet: init
    ## DOMAIN CONTROLLER LOG ##
    9/15/10 11:16 AM SocketRemoter: Initialized
    9/15/10 11:16 AM DomainController: Ready
    9/15/10 11:16 AM DomainController: Starting domain controller
    9/15/10 11:16 AM DomainController: Domain controller started
    9/15/10 11:16 AM DomainController: Domain manager obtained by user system
    9/15/10 11:18 AM DomainController: Domain manager obtained by user null
    9/15/10 11:20 AM DomainController: Domain manager obtained by user null
    9/15/10 11:20 AM DomainController: Domain manager obtained by user null
    9/15/10 11:20 AM DomainController: Domain manager obtained by user null
    9/15/10 11:23 AM DomainController: Domain manager obtained by user null
    9/15/10 11:25 AM DomainController: Domain manager obtained by user null
    9/15/10 11:25 AM DomainController: Domain manager obtained by user null
    9/15/10 11:25 AM DomainController: Domain manager obtained by user null
    9/15/10 11:28 AM DomainController: Domain manager obtained by user null
    9/15/10 11:30 AM DomainController: Domain manager obtained by user null
    9/15/10 11:30 AM DomainController: Domain manager obtained by user null
    9/15/10 11:30 AM DomainController: Domain manager obtained by user null
    9/15/10 11:33 AM DomainController: Domain manager obtained by user null
    9/15/10 11:35 AM DomainController: Domain manager obtained by user null
    9/15/10 11:35 AM DomainController: Domain manager obtained by user null
    9/15/10 11:35 AM DomainController: Domain manager obtained by user null
    9/15/10 11:38 AM DomainController: Domain manager obtained by user null
    9/15/10 11:40 AM DomainController: Domain manager obtained by user null
    9/15/10 11:40 AM DomainController: Domain manager obtained by user null
    9/15/10 11:40 AM DomainController: Domain manager obtained by user null
    9/15/10 11:43 AM DomainController: Domain manager obtained by user null
    9/15/10 11:45 AM DomainController: Domain manager obtained by user null
    9/15/10 11:45 AM DomainController: Domain manager obtained by user null
    9/15/10 11:45 AM DomainController: Domain manager obtained by user null
    9/15/10 11:48 AM DomainController: Domain manager obtained by user null
    9/15/10 11:50 AM DomainController: Domain manager obtained by user null
    9/15/10 11:50 AM DomainController: Domain manager obtained by user null
    9/15/10 11:50 AM DomainController: Domain manager obtained by user null
    9/15/10 11:53 AM DomainController: Domain manager obtained by user null
    9/15/10 11:55 AM DomainController: Domain manager obtained by user null
    9/15/10 11:55 AM DomainController: Domain manager obtained by user null
    9/15/10 11:55 AM DomainController: Domain manager obtained by user null
    9/15/10 11:58 AM DomainController: Domain manager obtained by user null
    9/15/10 12:00 PM DomainController: Domain manager obtained by user null
    9/15/10 12:00 PM DomainController: Domain manager obtained by user null
    9/15/10 12:00 PM DomainController: Domain manager obtained by user null
    9/15/10 12:03 PM DomainController: Domain manager obtained by user null
    9/15/10 12:05 PM DomainController: Domain manager obtained by user null
    9/15/10 12:05 PM DomainController: Domain manager obtained by user null
    9/15/10 12:05 PM DomainController: Domain manager obtained by user null
    9/15/10 12:08 PM DomainController: Domain manager obtained by user null
    9/15/10 12:10 PM DomainController: Domain manager obtained by user null
    9/15/10 12:10 PM DomainController: Domain manager obtained by user null
    9/15/10 12:10 PM DomainController: Domain manager obtained by user null
    9/15/10 12:13 PM DomainController: Domain manager obtained by user null
    9/15/10 12:15 PM DomainController: Domain manager obtained by user null
    9/15/10 12:15 PM DomainController: Domain manager obtained by user null
    9/15/10 12:15 PM DomainController: Domain manager obtained by user null
    9/15/10 12:18 PM DomainController: Domain manager obtained by user null
    9/15/10 12:20 PM DomainController: Domain manager obtained by user null
    9/15/10 12:20 PM DomainController: Domain manager obtained by user null
    9/15/10 12:20 PM DomainController: Domain manager obtained by user null
    9/15/10 12:23 PM DomainController: Domain manager obtained by user null
    9/15/10 12:25 PM DomainController: Domain manager obtained by user null
    9/15/10 12:25 PM DomainController: Domain manager obtained by user null
    9/15/10 12:25 PM DomainController: Domain manager obtained by user null
    9/15/10 12:28 PM DomainController: Domain manager obtained by user null
    9/15/10 12:30 PM DomainController: Domain manager obtained by user null
    9/15/10 12:30 PM DomainController: Domain manager obtained by user null
    9/15/10 12:30 PM DomainController: Domain manager obtained by user null
    9/15/10 12:33 PM DomainController: Domain manager obtained by user null
    9/15/10 12:35 PM DomainController: Domain manager obtained by user null
    9/15/10 12:35 PM DomainController: Domain manager obtained by user null
    9/15/10 12:35 PM DomainController: Domain manager obtained by user null
    9/15/10 12:38 PM DomainController: Domain manager obtained by user null
    9/15/10 12:40 PM DomainController: Domain manager obtained by user null
    9/15/10 12:40 PM DomainController: Domain manager obtained by user null
    9/15/10 12:40 PM DomainController: Domain manager obtained by user null
    9/15/10 12:43 PM DomainController: Domain manager obtained by user null
    9/15/10 12:45 PM DomainController: Domain manager obtained by user null
    9/15/10 12:45 PM DomainController: Domain manager obtained by user null
    9/15/10 12:45 PM DomainController: Domain manager obtained by user null
    9/15/10 12:48 PM DomainController: Domain manager obtained by user null
    9/15/10 12:50 PM DomainController: Domain manager obtained by user null
    9/15/10 12:50 PM DomainController: Domain manager obtained by user null
    9/15/10 12:50 PM DomainController: Domain manager obtained by user null
    9/15/10 12:53 PM DomainController: Domain manager obtained by user null
    9/15/10 12:55 PM DomainController: Domain manager obtained by user null
    9/15/10 12:55 PM DomainController: Domain manager obtained by user null
    9/15/10 12:55 PM DomainController: Domain manager obtained by user null
    9/15/10 12:58 PM DomainController: Domain manager obtained by user null
    9/15/10 1:00 PM DomainController: Domain manager obtained by user null
    9/15/10 1:00 PM DomainController: Domain manager obtained by user null
    9/15/10 1:00 PM DomainController: Domain manager obtained by user null
    9/15/10 1:03 PM DomainController: Domain manager obtained by user null
    9/15/10 1:05 PM DomainController: Domain manager obtained by user null
    9/15/10 1:05 PM DomainController: Domain manager obtained by user null
    9/15/10 1:05 PM DomainController: Domain manager obtained by user null
    9/15/10 1:08 PM DomainController: Domain manager obtained by user null
    9/15/10 1:10 PM DomainController: Domain manager obtained by user null
    9/15/10 1:10 PM DomainController: Domain manager obtained by user null
    9/15/10 1:10 PM DomainController: Domain manager obtained by user null
    9/15/10 1:13 PM DomainController: Domain manager obtained by user null
    9/15/10 1:15 PM DomainController: Domain manager obtained by user null
    9/15/10 1:15 PM DomainController: Domain manager obtained by user null
    9/15/10 1:15 PM DomainController: Domain manager obtained by user null
    9/15/10 1:18 PM DomainController: Domain manager obtained by user null
    9/15/10 1:20 PM DomainController: Domain manager obtained by user null
    9/15/10 1:20 PM DomainController: Domain manager obtained by user null
    9/15/10 1:20 PM DomainController: Domain manager obtained by user null
    9/15/10 1:23 PM DomainController: Domain manager obtained by user null
    9/15/10 1:25 PM DomainController: Domain manager obtained by user null
    9/15/10 1:25 PM DomainController: Domain manager obtained by user null
    9/15/10 1:25 PM DomainController: Domain manager obtained by user null
    9/15/10 1:28 PM DomainController: Domain manager obtained by user null
    9/15/10 1:30 PM DomainController: Domain manager obtained by user null
    9/15/10 1:30 PM DomainController: Domain manager obtained by user null
    9/15/10 1:30 PM DomainController: Domain manager obtained by user null
    9/15/10 1:33 PM DomainController: Domain manager obtained by user null
    9/15/10 1:35 PM DomainController: Domain manager obtained by user null
    9/15/10 1:35 PM DomainController: Domain manager obtained by user null
    9/15/10 1:35 PM DomainController: Domain manager obtained by user null
    9/15/10 1:38 PM DomainController: Domain manager obtained by user null
    9/15/10 1:40 PM DomainController: Domain manager obtained by user null
    9/15/10 1:40 PM DomainController: Domain manager obtained by user null
    9/15/10 1:40 PM DomainController: Domain manager obtained by user null
    9/15/10 1:43 PM DomainController: Domain manager obtained by user null
    9/15/10 1:45 PM DomainController: Domain manager obtained by user null
    9/15/10 1:45 PM DomainController: Domain manager obtained by user null
    9/15/10 1:45 PM DomainController: Domain manager obtained by user null
    9/15/10 1:48 PM DomainController: Domain manager obtained by user null
    9/15/10 1:50 PM DomainController: Domain manager obtained by user null
    9/15/10 1:50 PM DomainController: Domain manager obtained by user null
    9/15/10 1:50 PM DomainController: Domain manager obtained by user null
    9/15/10 1:53 PM DomainController: Domain manager obtained by user null
    9/15/10 1:53 PM DomainController: Node kys HTTP Node (ifs_socket://XXX:#####) has failed
    9/15/10 1:53 PM DomainController: Started node kys HTTP Node (ifs_socket://XXX:#####)
    9/15/10 1:55 PM DomainController: Domain manager obtained by user null
    9/15/10 1:55 PM DomainController: Domain manager obtained by user null
    9/15/10 1:55 PM DomainController: Domain manager obtained by user null
    9/15/10 1:55 PM DomainController: Node kys HTTP WebStarterApp Node (ifs_socket://XXX:#####) has failed
    9/15/10 1:55 PM DomainController: Started node kys HTTP WebStarterApp Node (ifs_socket://XXX:#####)
    9/15/10 1:58 PM DomainController: Domain manager obtained by user null
    9/15/10 2:00 PM DomainController: Domain manager obtained by user null
    9/15/10 2:00 PM DomainController: Domain manager obtained by user null
    9/15/10 2:00 PM DomainController: Domain manager obtained by user null
    9/15/10 2:03 PM DomainController: Domain manager obtained by user null
    9/15/10 2:05 PM DomainController: Domain manager obtained by user null
    9/15/10 2:05 PM DomainController: Domain manager obtained by user null
    9/15/10 2:05 PM DomainController: Domain manager obtained by user null
    9/15/10 2:08 PM DomainController: Domain manager obtained by user null
    9/15/10 2:10 PM DomainController: Domain manager obtained by user null
    9/15/10 2:10 PM DomainController: Domain manager obtained by user null
    9/15/10 2:10 PM DomainController: Domain manager obtained by user null
    9/15/10 2:13 PM DomainController: Domain manager obtained by user null

    Hello,
    First of all, thank you very much for your helpful answers.
    The problem was, we launched another server for test purpose. HTTP Server in both servers collided, so changing the HTTP Server Port in test machine solved the issue.
    P.S.: I didn't know test server was up when i wrote this problem in here. Sorry for misleading you.

  • 500 Internal Server Error while connecting JSP with Oracle

    Hello Friends,
    We Have installed Oracle Applications 11i in our orgaization which run on HP-UX 11.11 (HP Unix). I have created a JSP file in which I am trying to connect the database using OracleConnectionCacheImpl Class File in oracle.jdbc.pool directory. But it shows an error message as:
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    I have also installed Oracle HTTP Server on my personal machine at which this code runs perfectly only the error comes when i try to connect oracle from Oracle HTTP Server installed on our HP Unix Server.
    the path for pool package is:
    /appltest/apps/prodora/iAS/oem_webstage/oracle/jdbc/pool
    the location of JSP file is:
    /appltest/apps/prodcomn/portal/TEST_test/test
    What I think is I have to play with the CLASSPATh entries, but dont know how. Please help me in solving this issue...
    For your reference the JSP code is:
    <%@ page import="java.sql.*, javax.sql.*, oracle.jdbc.pool.*" %>
    <jsp:useBean id="ods" class="oracle.jdbc.pool.OracleConnectionCacheImpl" scope="session" />
    <%
    try
    ods.setURL("jdbc:oracle:thin:@test:1546:test");
    ods.setUser("kpm_hr");
    ods.setPassword("kpm_hr");
    Connection conn = ods.getConnection();
    Statement stmt = conn.createStatement();
    Resultset rset = stmt.executeQuery("select first_name,last_name from kpm_hr.kpm_hr_emp_mst where empcode='P0580'");
    rset.next();
    out.println(rset.getString(1)+" "+rset.getString(2);
    catch(SQLException e)
    out.println(e);
    } Thanks in adavnce,
    Ankur

    Just to verify, which relevant log files have you found?
    catch(SQLException e) {
    out.println(e);
    } Have you search the console log file?
    A quick observation reveals that your jsp is just a standalone java program executed inside jsp. Suppose you just run it as a standalone program. Any error then?
    Another way going forward is to install oc4j standalone of the same version. It is very easy to install: just download the oc4j-extended.zip and unzip it and run "java -jar oc4j.jar". Put you jsp inside j2ee/home/default-web-app and run. You should see relevant log messages in j2ee/home/log/server.log and j2ee/home/application-deployments/yourApp/application.log.
    You should have Jdeveloper of some appropriate version installed. If you have not, install one. It might be not a little bit high learning curve at first, but the rewards are quick and amazing, especially since jdev 10.1.3. (I am speaking from my experience.) Try it with Jdeveloper.

  • Internal Server Error while running JSP file (Oracle AS - HP Unix)

    Hello Friends,
    I have created a JSP file in which I am trying to connect the database using oracle.jdbc.pool directory. But it shows an error message as:
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    the path for pool package is:
    /appltest/apps/prodora/iAS/oem_webstage/oracle/jdbc/pool
    the location of JSP file is:
    /appltest/apps/prodcomn/portal/TEST_test/test
    What I think is I have to play with the CLASSPATh entries, but dont know how. Please help me in solving this issue...
    For your reference the JSP code is:
    <%@ page import="java.sql.*, javax.sql.*, oracle.jdbc.pool.*" %>
    <jsp:useBean id="ods" class="oracle.jdbc.pool.OracleConnectionCacheImpl" scope="session" />
    <%
    try
    ods.setURL("jdbc:oracle:thin:@test:1546:test");
    ods.setUser("kpm_hr");
    ods.setPassword("kpm_hr");
    Connection conn = ods.getConnection();
    Statement stmt = conn.createStatement();
    Resultset rset = stmt.executeQuery("select first_name,last_name from kpm_hr.kpm_hr_emp_mst where empcode='P0580'");
    rset.next();
    out.println(rset.getString(1)+" "+rset.getString(2);
    catch(SQLException e)
    out.println(e);
    Thanks in adavnce,
    Ankur
    Regards,
    Ankur Bhatia

    Just to verify, which relevant log files have you found?
    catch(SQLException e) {
    out.println(e);
    } Have you search the console log file?
    A quick observation reveals that your jsp is just a standalone java program executed inside jsp. Suppose you just run it as a standalone program. Any error then?
    Another way going forward is to install oc4j standalone of the same version. It is very easy to install: just download the oc4j-extended.zip and unzip it and run "java -jar oc4j.jar". Put you jsp inside j2ee/home/default-web-app and run. You should see relevant log messages in j2ee/home/log/server.log and j2ee/home/application-deployments/yourApp/application.log.
    You should have Jdeveloper of some appropriate version installed. If you have not, install one. It might be not a little bit high learning curve at first, but the rewards are quick and amazing, especially since jdev 10.1.3. (I am speaking from my experience.) Try it with Jdeveloper.

  • 500 Internal Server Error on IBM AIX for Oracle Application Server 10g

    Hi all,
    I have installed Oracle AS 10g on IBM AIX 5.3.After installation everything was working fine.After some time when i was trying to access the emd console for deploying the application it gives me following error:w/o asking for user name(ias_admin) and password.
    500 Internal Server Error
    java.lang.NoClassDefFoundError: oracle/sysman/eml/app/Console     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Class.java(Compiled Code))     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.loadServlet(HttpApplication.java:2283)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.findServlet(HttpApplication.java:4795)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)     at java.lang.Thread.run(Thread.java:568)
    Please help me out...
    Thanks in advance

    Hi,
    I am facing the same problem as well. Below is part
    of error captured from em-application.log:
    08/07/22 17:02:59 Started
    08/07/22 17:03:00 default: jsp: init
    08/07/22 17:03:00 default: Started
    08/07/22 17:03:04 emd: jsp: init
    08/07/22 17:03:04 emd: dynamicImage: init
    08/07/22 17:03:11 emd: Error initializing servlet
    java.lang.InternalError: Can't connect to X11 window
    server using '172.28.8.106:0.0' as the value of the
    DISPLAY variable.
    at
    sun.awt.X11GraphicsEnvironment.initDisplay(Native
    Method)
    at
    sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnv
    ironment.java:175)
    at java.lang.Class.forName1(Native Method)
    at java.lang.Class.forName(Class.java:180)
    at
    java.awt.GraphicsEnvironment.getLocalGraphicsEnvironme
    nt(GraphicsEnvironment.java:91)
    at
    java.awt.Font.initializeFont(Font.java:333)
    at java.awt.Font.<init>(Font.java:368)
    at
    oracle.sysman.eml.app.Console.<clinit>(Console.java:57
    9)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java(Compiled
    Code))
    at
    com.evermind.server.http.HttpApplication.loadServlet(H
    ttpApplication.java:2283)
    at
    com.evermind.server.http.HttpApplication.findServlet(H
    ttpApplication.java:4795)
    at
    com.evermind.server.http.HttpApplication.initPreloadSe
    rvlets(HttpApplication.java:4889)
    at
    com.evermind.server.http.HttpApplication.initDynamic(H
    ttpApplication.java:1015)
    at
    com.evermind.server.http.HttpApplication.<init>(HttpAp
    plication.java:549)
    at
    com.evermind.server.Application.getHttpApplication(App
    lication.java:890)
    at
    com.evermind.server.http.HttpServer.getHttpApplication
    (HttpServer.java:707)
    at
    com.evermind.server.http.HttpSite.initApplications(Htt
    pSite.java:625)
    at
    com.evermind.server.http.HttpSite.setConfig(HttpSite.j
    ava:278)
    at
    com.evermind.server.http.HttpServer.setSites(HttpServe
    r.java:278)
    at
    com.evermind.server.http.HttpServer.setConfig(HttpServ
    er.java:179)
    at
    com.evermind.server.ApplicationServer.initializeHttp(A
    pplicationServer.java:2394)
    at
    com.evermind.server.ApplicationServer.setConfig(Applic
    ationServer.java:1551)
    at
    com.evermind.server.ApplicationServerLauncher.run(Appl
    icationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:568)
    17:03:11 emd: Error preloading servlet
    avax.servlet.ServletException: Error initializing
    servlet
    at
    com.evermind.server.http.HttpApplication.findServlet(H
    ttpApplication.java:4846)
    at
    com.evermind.server.http.HttpApplication.initPreloadSe
    rvlets(HttpApplication.java:4889)
    at
    com.evermind.server.http.HttpApplication.initDynamic(H
    ttpApplication.java:1015)
    at
    com.evermind.server.http.HttpApplication.<init>(HttpAp
    plication.java:549)
    at
    com.evermind.server.Application.getHttpApplication(App
    lication.java:890)
    at
    com.evermind.server.http.HttpServer.getHttpApplication
    (HttpServer.java:707)
    at
    com.evermind.server.http.HttpSite.initApplications(Htt
    pSite.java:625)
    at
    com.evermind.server.http.HttpSite.setConfig(HttpSite.j
    ava:278)
    at
    com.evermind.server.http.HttpServer.setSites(HttpServe
    r.java:278)
    at
    com.evermind.server.http.HttpServer.setConfig(HttpServ
    er.java:179)
    at
    com.evermind.server.ApplicationServer.initializeHttp(A
    pplicationServer.java:2394)
    at
    com.evermind.server.ApplicationServer.setConfig(Applic
    ationServer.java:1551)
    at
    com.evermind.server.ApplicationServerLauncher.run(Appl
    icationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:568)
    17:03:11 emd: redirect: init
    8/07/22 17:03:11 emd: Started
    08/07/22 17:03:11 cabo: jsp: init
    08/07/22 17:03:11 cabo: Started
    08/07/22 17:05:28 emd: Error initializing servlet
    java.lang.NoClassDefFoundError:
    oracle/sysman/eml/app/Console
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java(Compiled
    Code))
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpApplication.loadServlet
    Http
    Application.java:2283)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpApplication.findServlet
    Http
    Application.java:4795)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpApplication.getRequestD
    spat
    cher(HttpApplication.java:2821)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpRequestHandler.processR
    ques
    t(HttpRequestHandler.java:680)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpRequestHandler.run(Http
    eque
    stHandler.java:285)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].server.http.HttpRequestHandler.run(Http
    eque
    stHandler.java:126)
    at com.evermind[Oracle Application Server
    Containers for J2EE 10g
    (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$M
    Work
    er.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:568)
    17:05:28 emd: Servlet error
    /b]
    Could someone please help me take a look on this?
    Thank you.
    Regards,
    HT
    Hi,
    I have got the solution........
    go through the url:
    http://docs.tpu.ru/docs/oracle/en/oas/10.1.2.0.2/aix.1012/relnotes.1012/relnotes/install.htm
    Read these points:
    Class Not Found Execption: 2.1.25
    After doing all these four steps,restart your application server control.
    Cause of this problem:
    X Virtual Frame Buffer: 2.4.14
    Cheers,

  • Oracle E-Business Suite, Internal Server Error

    Hi All,
    I'm getting "Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    when i try to logon to E-Business Suite Home Page - http://oracle.xxxxx.local:8003/oa_servlets/AppsLogin
    Its installed on a Windows Server 2003, i checked the Log and i see these errors in F:\Oracle\Visora\iAS\Apache\Jserv\logs\mod_Jserv.log
    [13/07/2009 09:27:38:970] (ERROR) ajp12: Servlet Error: java.lang.NullPointerException: null
    [13/07/2009 09:27:38:970] (ERROR) an error returned handling request via protocol "ajpv12"
    [13/07/2009 09:27:39:001] (ERROR) balance: 2536 internal servlet error in server oracle.apppoint.local:16030
    [13/07/2009 09:27:39:001] (ERROR) an error returned handling request via protocol "balance"
    I ran the adautocfg.cmd but no use, i desperately need help as we don't have a dba admin, it was setup few years ago on our server, Help really appreciated. Thanks.

    It does matter ... the people that might know the answer to your problem are probably not in this forum.
    It is more likely that you're going to find someone in the EBS forum that can help you than here.... it does not hurt to post again in the EBS forum.

  • Error 500--Internal Server Error in Oracle SPARQL Service Endpoint

    Hi,
    I followed the instructions of "Setting Up the SPARQL Service" in the developer's guide. However, after I finished all the steps and click "Submit Query" button in Oracle SPARQL Service Endpoint using Joseki page, I got this error message:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    I can't figure out what's wrong with the service. Can anybody pls help me solve the problem? Thanks in advance.
    Kind Regards,
    Hong

    hi zhe,
    i installed the right version of jena adapter for oracle 11.2.01 and recreated the data source in WLS. however, i still got the same error when click joseki sparql service end point. but, the first error message is different than the second time. it is shown below:
    first time:
    Error 500--Internal Server Error
    java.lang.NoSuchMethodError: com.hp.hpl.jena.sparql.util.StringUtils.join
    (Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/String;
         at org.joseki.Configuration.makeQuery(Configuration.java:827)
         at org.joseki.Configuration.readConfFile(Configuration.java:176)
         at org.joseki.Configuration.(Configuration.java:82)
         at org.joseki.Dispatcher.setConfiguration(Dispatcher.java:130)
         at org.joseki.Dispatcher.initServiceRegistry(Dispatcher.java:100)
         at org.joseki.http.Servlet.init(Servlet.java:112)
         at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run
    (StubSecurityHelper.java:283)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs
    (AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs
    (SecurityManager.java:121)
         at weblogic.servlet.internal.StubSecurityHelper.createServlet
    (StubSecurityHelper.java:64)
         at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance
    (StubLifecycleHelper.java:58)
         at weblogic.servlet.internal.StubLifecycleHelper.
    (StubLifecycleHelper.java:48)
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet
    (ServletStubImpl.java:539)
         at weblogic.servlet.internal.ServletStubImpl.execute
    (ServletStubImpl.java:243)
         at weblogic.servlet.internal.ServletStubImpl.execute
    (ServletStubImpl.java:183)
         at weblogic.servlet.internal.WebAppServletContext
    $ServletInvocationAction.doIt(WebAppServletContext.java:3686)
         at weblogic.servlet.internal.WebAppServletContext
    $ServletInvocationAction.run(WebAppServletContext.java:3650)
         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:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute
    (WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run
    (ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    thanks a lot.
    regards,
    hong

  • Internal Server Error when Displaying Total No. of Pages in Oracle Reports

    Hello all,
    I've already posted an almost similar message in the Developer Tools forums but would like to post it again here since we think that this is a problem with the report server (Maybe we're missing a patch, a configuration value not set properly or resources are not enough like memory).
    We're using Oracle Reports Server ver10.1.2.0.2 and we're encountering an Internal Server Error when a particular report retrieves around 10K records which displays on each page the current page and the total no of pages. When we only display the current page, the report does not encounter any error.
    When we enabled the tracing options, it just showed that it encountered a Null pointer exception.
    [2006/7/13 11:1:4:703] Debug 50103 (EngineImpl:EngineImpl) : CInitEngine returns 0
    [2006/7/13 11:1:4:765] Exception 50125 (java.lang.NullPointerException
    at oracle.reports.engine.RWEngine.init(RWEngine.java:343)
    at oracle reports.engine.RWEngine.main(RWEngine.java:60)
    ): Internal error java.lang.NullPointerException
    And according to metalink (Doc Id:315228.1), we should just remove the total pages in our report. Problem is that this isn't an option for us. The document also mentioned about something about timeouts. We have already tried setting the request timeout parameter of the HTTP server to larger values but it still doesn't solve the problem.
    Is there a workaround for this?
    Any help would really be greatly appreciated.

    Hi All,
    We really need a workaround for this error. When we enabled the tracing options, it just showed that it encountered a Null pointer exception.
    [2006/7/13 11:1:4:703] Debug 50103 (EngineImpl:EngineImpl) : CInitEngine returns 0
    [2006/7/13 11:1:4:765] Exception 50125 (java.lang.NullPointerException
    at oracle.reports.engine.RWEngine.init(RWEngine.java:343)
    at oracle reports.engine.RWEngine.main(RWEngine.java:60)
    ): Internal error java.lang.NullPointerException
    HELP!

  • Receiving "500 - Internal Server Error" on Oracle hosted free workspace

    Hello everyone...is there any planned outage for http://apex.oracle.com/pls/apex/?
    I'm receiving an error: 500 - Internal Server Error
    Best regards.

    Just tried it here and received the usual login screen....
    Thank you,
    Tony Miller
    LuvMuffin Software
    Ruckersville, VA

  • 500 internal server error on Oracle 10g Enetrprise Manager

    Hi All,
    I have iinstalled Oracle 10g on windows xp. In Enterprise Manager, I receive the error below when I click on the startup button on the database control Home page:
    500 Internal Server Error
    java.lang.NullPointerException
         at oracle.sysman.emo.adm.instance.changeState.ChangeStateObject.setDbUserPassword(ChangeStateObject.java:335)
         at oracle.sysman.emo.adm.instance.changeState.ChangeStateObject.setSecretPassword(ChangeStateObject.java:1971)
         at oracle.sysman.eml.creds.CredsUtil.loadCreds(CredsUtil.java:1223)
         at oracle.sysman.emSDK.creds.CredsBean.loadCreds(CredsBean.java:544)
         at oracle.sysman.emSDK.creds.DBCredsBean.loadCreds(DBCredsBean.java:260)
         at oracle.sysman.emSDK.creds.DBComboCredsBean.loadCreds(DBComboCredsBean.java:208)
         at oracle.sysman.emSDK.creds.CredsBean.initCreds(CredsBean.java:118)
         at oracle.sysman.emSDK.creds.DBCredsBean.initCreds(DBCredsBean.java:91)
         at oracle.sysman.db.adm.inst.ChangeStateController.getChangeStateObject(ChangeStateController.java:385)
         at oracle.sysman.db.adm.inst.ChangeStateController.getBean(ChangeStateController.java:342)
         at oracle.sysman.db.adm.inst.ChangeStateController.getOperationsPage(ChangeStateController.java:168)
         at oracle.sysman.db.adm.inst.ChangeStateController.getDefaultPage(ChangeStateController.java:292)
         at oracle.sysman.db.adm.inst.ChangeStateController.onEvent(ChangeStateController.java:437)
         at oracle.sysman.db.adm.DBController.handleEvent(DBController.java:2163)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:376)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:115)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:688)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:291)
         at oracle.sysman.eml.app.Console.doGet(Console.java:246)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:101)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:131)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:223)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Does anyone know why this is so ans how to fix it?
    Thanks.

    Just tried it here and received the usual login screen....
    Thank you,
    Tony Miller
    LuvMuffin Software
    Ruckersville, VA

  • In Oracle 10G i am getting 500 internal server error

    Hi,
    When i click on ADDM in OEM. i am getting below mentioned error can any one explain me why this is happening.
    500 Internal Server Error
    java.lang.NullPointerException
         at oracle.sysman.emo.perf.bean.BaseWaitsBean.initDefaultTimeInterval(BaseWaitsBean.java:227)
         at oracle.sysman.db.adm.inst.HdmController.setupWaitsBean(HdmController.java:639)
         at oracle.sysman.db.adm.inst.HdmController.onRunOrLaunchHDM(HdmController.java:2524)
         at oracle.sysman.db.adm.inst.HdmController.onEvent(HdmController.java:1273)
         at oracle.sysman.db.adm.BaseController.handleEvent(BaseController.java:818)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:376)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:169)
         at oracle.sysman.db.adm.inst.HdmController.handleRequest(HdmController.java:2985)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:114)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:688)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:291)
         at oracle.sysman.eml.app.Console.doGet(Console.java:285)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:101)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:138)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:269)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:793)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.1.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:595)

    user13051169
    You want to post your problem on the Database General forum here General Database Discussions
    You are more likely to find help there.
    Regards,

  • 500 Internal Server Error oracle.apps.fnd.cache.CacheException

    I have been trying to access a new instance using JDEV, but i have been getting this error:
    Can anyone help me ?
    500 Internal Server Error
    oracle.apps.fnd.cache.CacheException at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:228) at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1485) at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:354) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211) at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171) at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148) at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1259) at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1114) at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1083) at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1050) at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1037) at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595) at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:941) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:926) at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:891) at oracle.apps.fnd.common.WebAppsContext.&lt;init&gt;(WebAppsContext.java:1027) at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:223) at OAErrorPage.jspService(_OAErrorPage.java:62) [OAErrorPage.jsp] at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193) at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813) at runregion.jspService(_runregion.java:193) [runregion.jsp] at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298) at java.lang.Thread.run(Thread.java:595)Caused by: oracle.apps.jtf.base.resources.FrameworkException: Error in IAS Cache: java.lang.NullPointerException: null Connection at oracle.apps.jtf.cache.IASCacheProvider.get(IASCacheProvider.java:712) at oracle.apps.jtf.cache.CacheManager.getInternal(CacheManager.java:4802) at oracle.apps.jtf.cache.CacheManager.get(CacheManager.java:4624) at oracle.apps.fnd.cache.AppsCache.get(AppsCache.java:216) ... 50 moreCaused by: oracle.apps.jtf.base.resources.FrameworkException: An exception occurred in the method CacheAccess.getnullThe base exception is:null Connection at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607) at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:66) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:88) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:202) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:218) at oracle.apps.jtf.base.resources.FrameworkException.&lt;init&gt;(FrameworkException.java:249) ... 54 more

    Hi Pardeep,
    I was getting the same error. I have copied the JDK 1.5.0_16.zip from other user and unzip in the folder of mine like AB12020 where I have installed the Jdeveloper or might be your DBC file get corrupted.
    Check out..
    Thanks
    Anil Sharma
    PS-Pls marked ur questioned as answered and close the question.
    Edited by: OAFUser on Jan 15, 2009 9:43 PM

  • Reg: Internal server error in oracle application.

    Hi
    Oracle Application Version:11.5.10.2
    Database Version;9.2.0.70
    OS : linux redhat 4
    When i tried to click the ebusiness suite in oracle application 11i, I got the internal server error message, Then i checked out the accces_log and error_log it given the following message i mentioned below. (Note: I Bonce the apache also)
    ERROR_LOG: [applprod@oraapps logs]$ cat error_log | tail -20
    [Fri Jul 24 21:36:25 2009] [notice] caught SIGTERM, shutting down
    [Sat Jul 25 15:40:21 2009] [notice] FastCGI: process manager initialized (pid 5050)
    [Sat Jul 25 15:40:22 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Sat Jul 25 15:41:43 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:41:43 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:41:43 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:41:45 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:41:48 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:44:11 2009] [notice] caught SIGTERM, shutting down
    [Sat Jul 25 15:44:15 2009] [notice] FastCGI: process manager initialized (pid 7858)
    [Sat Jul 25 15:44:16 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Sat Jul 25 15:44:22 2009] [notice] caught SIGTERM, shutting down
    [Sat Jul 25 15:44:25 2009] [notice] FastCGI: process manager initialized (pid 8739)
    [Sat Jul 25 15:44:26 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Sat Jul 25 15:44:31 2009] [notice] caught SIGTERM, shutting down
    [Sat Jul 25 15:44:34 2009] [notice] FastCGI: process manager initialized (pid 9629)
    [Sat Jul 25 15:44:35 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Sat Jul 25 15:53:00 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:53:01 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    [Sat Jul 25 15:53:02 2009] [error] [client 172.19.0.155] File does not exist: /prod/r01/oracle/prodcomn/portal/PROD_oraapps/favicon.ico
    ACCESS_LOG: [applprod@oraapps logs]$ cat access_log | tail -10
    100.50.0.9 - - [27/Dec/2005:22:52:05 +0530] "GET /OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE&akRegionApplicationId=0&navRespId=20420&navRespAppId=1&navSecGrpId=0&transactionid=1063955026&oapc=2&oas=HDlJgTmpsAyB9pMShLH-Jw.. HTTP/1.1" 200 79795
    100.50.0.9 - - [27/Dec/2005:22:52:05 +0530] "GET /OA_MEDIA/fwkhp_formsfunc.gif HTTP/1.1" 200 637
    100.50.0.9 - - [27/Dec/2005:22:52:05 +0530] "GET /OA_MEDIA/fwkhp_sswafunc.gif HTTP/1.1" 200 659
    100.50.0.9 - - [27/Dec/2005:22:52:14 +0530] "GET /OA_HTML/RF.jsp?function_id=55&resp_id=20420&resp_appl_id=1&security_group_id=0&lang_code=US&oas=h87GOJoo2lLs6BhryEdFyw.. HTTP/1.1" 302 483
    100.50.0.9 - - [27/Dec/2005:22:52:24 +0530] "GET /pls/DEV03/fnd_icx_launch.launch?resp_app=SYSADMIN&resp_key=SYSTEM_ADMINISTRATOR&secgrp_key=STANDARD&start_func=FND_FNDSCAPP&other_params= HTTP/1.1" 302 0
    100.50.0.9 - - [27/Dec/2005:22:52:25 +0530] "GET /dev60cgi/f60cgi?&appletmode=nonforms&HTMLpageTitle=&HTMLpreApplet=&code=oracle/apps/fnd/formsClient/FormsLauncher.class&width=400&height=100&archive=/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar,/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar,/OA_JAVA/oracle/apps/fnd/jar/fndewt.jar,/OA_JAVA/oracle/apps/fnd/jar/fndswing.jar,/OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar,/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar,/OA_JAVA/oracle/apps/fnd/jar/fndctx.jar,/OA_JAVA/oracle/apps/fnd/jar/fndlist.jar&gp14=jinit_appletcache&gv14=offjinit_appletcache=off&gp2=resp_app&gv2=SYSADMIN&gp3=resp&gv3=SYSTEM_ADMINISTRATOR&gp4=sec_group&gv4=STANDARD&gp5=function&gv5=FND_FNDSCAPP&gp6=other_params&gv6=&gp7=forms_url&gv7=http%3A%2F%2Foraapps.yantro.com%3A8040%2Fpls%2FDEV03%2Ffnd_icx_launch.runforms%3FICX_TICKET%3D%26resp_app%3DSYSADMIN%26resp_key%3DSYSTEM_ADMINISTRATOR%26secgrp_key%3DSTANDARD%26start_func%3DFND_FNDSCAPP%26other_params%3D&encoding=ISO-8859-1&gp8=error_url&gv8=http%3A%2F%2Foraapps.yantro.com%3A8040%2FOA_HTML%2Fjsp%2Ffnd%2Ffnderror.jsp%3Fdbc%3Doraapps_dev03&gp12=port&gv12=6945&gp13=dbc&gv13=oraapps_dev03&gp15=icx_ticket&gv15=526322606 HTTP/1.1" 200 317
    100.50.0.9 - - [27/Dec/2005:22:52:29 +0530] "GET /OA_HTML/OALogout.jsp?menu=Y HTTP/1.1" 302 372
    100.50.0.9 - - [27/Dec/2005:22:52:29 +0530] "GET /oa_servlets/oracle.apps.fnd.sso.AppsLogout HTTP/1.1" 302 415
    100.50.0.9 - - [27/Dec/2005:22:52:29 +0530] "GET /OA_HTML/AppsLocalLogout.jsp?returnUrl=%2FOA_HTML%2FAppsLocalLogin.jsp%3FcancelUrl%3D%2FOA_HTML%2FAppsLocalLogin.jsp HTTP/1.1" 302 402
    100.50.0.9 - - [27/Dec/2005:22:52:29 +0530] "GET /OA_HTML/AppsLocalLogin.jsp?cancelUrl=/OA_HTML/AppsLocalLogin.jsp&langCode=US&username=SYSADMIN HTTP/1.1" 200 6941
    please give me a solution.
    Regards
    Karthick raja

    hi
    When i tried restart the apache in oracle_home, it given the following error message. (Note: but in application side apache web listner startted succesfully).
    [oraprod@oraapps bin]$ apachectl start
    (13)Permission denied: make_sock: could not bind to address [::]:443
    no listening sockets available, shutting down
    Regards
    karthickraja

Maybe you are looking for

  • Sending Filled PDF Form ONLINE without promting outlook/windowsmail etc

    This question has been placed serveral times. But no one seemed to have THE anwers/script for it. now we all know that a filled pdf form, can be send as an attachment when you click on the submit button. It prompts, your computer mail software and pl

  • Calendar (iCal) bottom of text cut off

    Hi all. Just recently, the top of all event title text in Calendar is cut off. And the words up on top has shifted up, I believe it used to be centered in its boxes.  I'm referring to what I see on the screen of my MacBook Pro Retina, NOT in printed

  • How do i get hpeprint to work with print app from eurosmartz?

    How do i get hpeprint to work with print app from eurosmartz?

  • Syntax in xsl for the below condition

    i am having a condition like below <DATA_DS> <G_1> <MBR_ID>AD32575H</MBR_ID> - <G_2> <IND>CLAIM</IND> - <G_3> <SERVICE_CODE /> <QTY_DISP>0</QTY_DISP> <SUPPLY_DAYS>0</SUPPLY_DAYS> <RATE_CD>3874</RATE_CD> </G_3> - <G_3> <SERVICE_CODE /> <QTY_DISP>0</QT

  • Safari 4.0.2 initial web page takes ages to load ...

    Hi, When I start Safari, the browser loads up fine to a blank page. I'll select one of my bookmarks or type in a web address in the address bar, press return and wait absolutely ages for the page to load. Any subsequent pages will load at normal spee