Application Server 4.0 caching the Java Servlet Program

Hi all,
I am working with Oracle8i databse and Oracle Application Server 4.0. Now I need to develop some Java Servlet's Program. I successful configure the server and my Servlet program can connect to the Oracle database.
However, when I make some modification to the program and recompile it. The browser cannot refresh to the modified program. This mean that the content is't update. I think the reason may be the previous program is cached in server.
Later, I discover using the 'owsctl' utility to reload the application server can solve this problem. However, it is quite inconvenience and not favour to reloasd the server very frequently. And I guess there may have some configuration parameters in the 'OAS Manager' can help me to solve my problem.
So, anyone can tell me how to solve this problem? Thank you very much.
Regards

OAS 4.0.8.1 supports servlets. You need a patch if you implement extra path info feature of servlets. In addition, you have to bounce OAS everytime you upload new servlets. This behavior does not follow the Servlet spec and I don't know when Oracle will fix it. It is a big problem for sites trying to run 24x7.
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by dlnoida:
Dear All,
I have an application built in applets, i wants to host them on OAS 4.0.7.
How can i do it if possible? Do i reqire any third party tool for it ?
Is OAS 4.0.8 supports servlets?<HR></BLOCKQUOTE>
null

Similar Messages

  • Inputting an excel file to the java servlet program

    Hi,
    How can I input an excel file into the java servlet program? I am using POI HSSF programming to read the content of that excel file.I have created a form that will accept the path from the user and in the servlet program, I have called a post method to retrieve the path of the file. I am getting the path of the file as a string.Then I have to access the file to read the data. But it is not working. What should I do?.Please help me.
    I have created an html file to create a form that will ask the path of the file to be loaded into the servlet program.Please give me a solution,thanks in advance. The servlet program that receives the file is shown below. It just only take the name of the file and prints if that is ok.
    <html>
    <body bgcolor="green">
    <center>
    <form method="post"  action="http://localhost:8080/examples/servlet/Ron1">
    <table>
    <tr>
    <td><B>ENTER THE PATH OF THE FILE</td>
    <td><input type=file name="path"></td>
    </tr>
    </table>
    <input type=submit value= "submit" >
    </form>
    </body>
    </html>
    import java.io.*;
    import javax.servlet.*;
    import java.lang.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import java.text.*;
    import java.util.*;
    import com.oreilly.servlet.MultipartRequest;
    import org.apache.poi.hssf.usermodel.*;
    public class Ron1 extends HttpServlet
       public void doPost(HttpServletRequest request, HttpServletResponse response)   throws IOException, ServletException
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            String u = request.getParameter("FileToUpload");
            out.println("The Path is "+u);
            System.out.println("The path is "+u);
            MultipartRequest multi = new MultipartRequest(request,u,10 * 1024 * 1024);
            System.out.println("path is "+u);
            Enumeration files = multi.getFileNames();
            File fUploadedFile = null;
            String sFileName = "";
            out.println("path is "+u);
            while(files.hasMoreElements())
                            String name = (String)files.nextElement();
                            out.println("file is "+name);
                            sFileName = multi.getFilesystemName(name);
                            String type = multi.getContentType(name);
                            fUploadedFile = multi.getFile(name);
                    FileInputStream fis= new FileInputStream(fUploadedFile);
                   HSSFWorkbook wb=new HSSFWorkbook(fis);
                    System.out.println("The path is "+u);
                    out.println("File has identified successfully\n");
                    out.close();
       }

    Hi,
    Can you try to use classes from java.net package (URL, URLConnection) to pass the contents of excel file to servlet?
    HTH
    Vishal

  • How to give the application server file path in the module pool programming

    Hi,
         Could somebody help me how to provide the application server file path in module pool programming once the logo is uploaded to sap system.
      For eg I have imported a logo name ‘owens’ into sap system by using transaction ‘se78’; now I need to call the path in the below url,
    if container2 is initial.
    CREATE OBJECT CONTAINER2
      EXPORTING
        CONTAINER_NAME              = 'PICTURE_CONTAINER2'.
    CREATE OBJECT PICTURE2
      EXPORTING
        PARENT = CONTAINER2.
    CALL METHOD PICTURE2->SET_DISPLAY_MODE
      EXPORTING
        DISPLAY_MODE = CL_GUI_PICTURE=>display_mode_fit_center
      EXCEPTIONS
        ERROR        = 1.
    CALL METHOD PICTURE2->LOAD_PICTURE_FROM_URL
      EXPORTING
        URL    = " ? "
      EXCEPTIONS
        ERROR  = 1
        Others = 2.
    endif.
    Thanks in advance
    Deepu

    hi Deepu,
    Use FM '/SAPDMC/LSM_F4_FRONTEND_FILE' for fetching the data from the application server path/presentation server path
    Regards,
    Santosh

  • Which application server supports EJB 3 and Java EE 5?

    Hi all,
    I want to develop an application using EJB 3.
    I was planning on using JBOSS 4.0.4 as application server, but I am not sure whether EJB 3 is fully supported.
    Which application server supports EJB 3 and Java EE 5?
    Thanks

    Just install it using the EJB3 profile in the installer. Don't use the "All" profile
    and think EJB3 is included in it :)

  • OPEN DATA SET to write files in application server folder - some of the files are missing

    Hi,
    I'm using OPEN DATASET statement in batch job to write the files in application server. what i'm experiencing is when i schedule the batch job all the files are not writing into the folder.
    If i run the report again to write the missed files, the files are writing into the application server folder.
    after opening the dataset, i'm closing it. do we need to give any delay between creation of the files? or until the first write operation is done, 2nd one can't start ..how can we achieve this.
    Thanks for your help in advance.
    Thanks,
    Adi.

    Hello Bathineni,
    Are you using the sy-subrc check after the OPEN DATASET statement.
    If not use a sy-subrc check and transfer the contents to file only when the OPEN DATASET returns value sy-subrc = 0.
    if sy-subrc is 8 repeat the same loop say for 3 attempts until the OPEN DATASET becomes 0.
    DO 3 TIMES. <---- put any number of attempts as you need
    OPEN DATASET.
    IF sy-subrc = 0.
       TRANSFER contents to file.
       EXIT.
    ENDIF.
    ENDDO.
    CLOSE DATASET.
    Regards,
    Thanga

  • Unrecognized option: -server  Could not create the Java virtual machine.

    Hi
    I'm running JBoss 4.0 with JDK 1.5.0_12 (or could use 1.2.1 or 1.4.2) but when I try run.bat I get the following error
    Unrecognized option: -server Could not create the Java virtual machine.
    IfI try removing -server I get a different message
    Exception in thread "main" java.lang.UnsupportedClassVersionError: org/jboss/Main (Unsupported major.minor version 48.0)
    Hope you can help. Really need to get this going ASAP
    Thanks
    Geri

    Hi all,
    Thanks for responding.
    This is what I get when I did the following:
    $java -version
    java version "1.2.2"
    Solaris VM (build Solaris_JDK_1.2.2_06, native threads, sunwjit)
    $which java
    /usr/bin/java
    The java version was definitely not what I expected as I had installed the Java(TM) 2 Runtime Environment 1.3.1 and no Java hotspot was found even though I had already installed it. Maybe it because I did not install them correctly.
    How do I get rid of the older version and replace it with a newer one?
    I noticed that in later versions of J2SE, Hotspot VM was said to have been incorporated in it. But there are no guides on how to get Hotspot up and running, it will be great if anyone of you can guide me on this or point me to a site that can help me.
    Please bear with me as I am still very new to this. Thanks!

  • Handle a pdf using using the Java-based programming

    Could I handle a PDF document created by LiveCycle using the Java-based programming?
    I want to say, don't use the LiveCycle server-based application.
    I'm developing a small desktop application. This application read from the database and populate a PDF document. The PDF document has many forms and they use a button to increment the field in the subform or duplicate the subform.

    Could I handle a PDF document created by LiveCycle using the Java-based programming?
    I want to say, don't use the LiveCycle server-based application.
    I'm developing a small desktop application. This application read from the database and populate a PDF document. The PDF document has many forms and they use a button to increment the field in the subform or duplicate the subform.

  • How to Compile & Deploy the Java Concurrent Program File

    Hi,
    There is a requirement to create the Java Concurrent Program in Oracle eBusiness. I am able to create the Java Concurrent Program file. But unable to do the following things:
    1.Since it is custom file, which location I will deploy the file?
    2. How to compile the file?
    3. In the execution file path and executable file name what should I specify for JCP?
    Please guide me.
    Thanks

    Please see (How to register and execute Java Concurrent Program ?in Oracle Applications R11i ? [ID 186301.1]) for the complete steps (i.e. define concurrent program and add it to the request group, .etc.) -- This is also applicable to R12.
    You may also see:
    Classpath Setting of Third Party Jar Files in R12 Java Concurrent Program (JCP) [ID 1292694.1]
    Integrating Custom Applications with Oracle Applications [ID 176852.1]
    Java Concurrent Program FAQ [ID 827575.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Java+AND+Concurrent+AND+Program&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Example of 'Java Servlet Programming, 2nd Edition' (O'reilly)

    Hi,
    I'm reading 'Java Servlet Programming, 2nd Edition' (O'reilly).
    I got a error "'.' expected" and "cannot resolve symbol"
    when trying JSP sample, hello3.jsp and HelloBean.java:
    I put hello3jsp to webapps/sample, and HelloBean.class
    to webapps/sample/WEB-INF/classes .
    Is this collect? If true, why I got the error?
    Could you give me any advices?
    hello3.jsp:
    (http://www.servlets.com/jservlet2/examples/ch18/hello3.jsp.txt)
    <%-- hello3.jsp --%>
    <%@ page import="HelloBean" %>
    <jsp:useBean id="hello" class="HelloBean">
      <jsp:setProperty name="hello" property="*" />
    </jsp:useBean>
    <HTML>
    <HEAD><TITLE>Hello</TITLE></HEAD>
    <BODY>
    <H1>
    Hello, <jsp:getProperty name="hello" property="name" />
    </H1>
    </BODY>
    </HTML>HelloBean.java:
    (http://www.servlets.com/jservlet2/examples/ch18/HelloBean.java)
    public class HelloBean {
      private String name = "World";
      public void setName(String name) {
        this.name = name;
      public String getName() {
        return name;
    }Error Message:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 4 in the jsp file: /hello3.jsp
    Generated servlet error:
        [javac] Compiling 1 source file
    /usr/local/java/jakarta-tomcat-4.1.18/work/Standalone/localhost/sample/hello3_jsp.java:7: '.' expected
    import HelloBean;
                    ^
    /usr/local/java/jakarta-tomcat-4.1.18/work/Standalone/localhost/sample/hello3_jsp.java:44: cannot resolve symbol
    symbol  : class HelloBean
    location: class org.apache.jsp.hello3_jsp
          HelloBean hello = null;
          ^regards
    maco

    I got succeeded!
    I changed the three point:
    * add 'package hoo;' in HelloBean.java
    * add '<%@ page import="my.HelloBean" %>' in hello3.jsp
    * change '<jsp:useBean id="hello" class="HelloBean">
    to '<jsp:useBean id="hello" class="my.HelloBean">
    Before posting, I searched google three times but couldn't get answer.
    I could not get well if you didn't give me help...
    Thank you very much.

  • How to customize the Java Concurrent Program(PO Output for Communication)

    Hi,
    How to customize the Java Concurrent Program(PO Output for Communication)
    I need to add the Line level Ship To Address ,Line Notes and Extended Price fields on Java Concurrent Program.
    Please any body help/guide me in this regard.

    Hi,
    Changing Java Conc. program for "PO Output for Communication" is difficult.
    Actually, if you observe closely, "PO Output for Communication" program uses PO<HEADER/LINES..>_XML views.
    So if you could change these views and add your requireed columns to it, you can automatically see your changes in XML data file.
    See if the following link will you to get there.. http://chandramatta.blogspot.com/
    thanks,
    Matt

  • I am not able to install or run most of the java based programs on Solaris8

    I am getting java.lang.UnsatisfiedLinkError in most of the java dependent programs running on Solaris 8 box. I suspect something wrong with the Java library or files. Can anyone assist please. Thanks in advance.
    ./startconsole
    Exception in thread "main" java.lang.UnsatisfiedLinkError: exception occurred in JNI_OnLoad
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1382)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1298)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:53)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.loadLibraries(Toolkit.java:1070)
    at java.awt.Toolkit.<clinit>(Toolkit.java:1091)
    at java.awt.Color.<clinit>(Color.java:188)
    at javax.swing.plaf.metal.MetalTheme.<clinit>(MetalTheme.java:27)
    at javax.swing.plaf.metal.MetalLookAndFeel.createDefaultTheme(MetalLookAndFeel.java:1031)
    at javax.swing.plaf.metal.MetalLookAndFeel.getDefaults(MetalLookAndFeel.java:1036)
    at javax.swing.UIManager.setLookAndFeel(UIManager.java:361)
    at com.netscape.management.client.console.Console.common_init(Unknown Source)
    at com.netscape.management.client.console.Console.<init>(Unknown Source)
    at com.netscape.management.client.console.Console.main(Unknown Source)

    google gave me this
    http://www.velocityreviews.com/forums/t126255-answer-to-unsatisfiedlinkerror-jni.html

  • Announcing the Java Spring Programming IDE Challenge

    Help promote your favorite Java Spring Programming IDE by taking part in the Java Spring Programming IDE Challenge which is taking place on JavaPocket.net.
    The resulting contest entries will be used to help teach Java Spring Programming. See JavaPocket.net for more details.

    In case you don't have time to partake in the programming challenge right now, at least come take a really short - single page - survey on JavaPocket.net to help us figure out which Java Programming IDE best lends itself to learning Java Spring. Thanks!

  • Icons are not displayed, Weblogic Application server 11 network: Cache entr

    I am using weblogic application server 11g
    operating system windows 64 bit
    I have created jar file, I signed the jar file using sign_webuitl.bat. My jar exist in C:\Oracle\Middleware\as_1\forms\java folder.
    I configured formsweb.cfg file
    archive= myicons.jar,frmall.jar....
    When I run the application , java console shows that jar is loaded but icon is displayed on the form. Java console shows that it does not find cached entry for gif file.
    Java Console Messge:
    Java Plug-in 1.6.0_12
    Using JRE version 1.6.0_12 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Administrator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@fd13b5
    network: Cache entry found [url: http://musetest/forms/java/myicons.jar, version: null]
    network: Connecting http://musetest/forms/java/myicons.jar with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/myicons.jar : 304
    network: Encoding for http://musetest/forms/java/myicons.jar : null
    network: Disconnect connection to http://musetest/forms/java/myicons.jar
    network: Cache entry found [url: http://musetest/forms/java/frmwebutil.jar, version: null]
    network: Connecting http://musetest/forms/java/frmwebutil.jar with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmwebutil.jar : 304
    network: Encoding for http://musetest/forms/java/frmwebutil.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmwebutil.jar
    network: Cache entry found [url: http://musetest/forms/java/frmall.jar, version: null]
    network: Connecting http://musetest/forms/java/frmall.jar with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmall.jar : 304
    network: Encoding for http://musetest/forms/java/frmall.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmall.jar
    security: Loading Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loading Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loaded Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Internet Explorer TrustedPublisher certificate store
    security: User has granted the priviledges to the code for this session only
    security: Adding certificate in Deployment session certificate store
    security: Added certificate in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 168158 us, pluginInit dt 2734996 us, TotalTime: 2903154 us
    basic: Applet initialized
    basic: Loading Java Applet ...
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@fd13b5
    basic: Applet made visible
    basic: Starting applet
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/bgnd.gif
    Forms Session ID is formsapp.14
    network: Cache entry found [url: http://musetest/forms/registry/oracle/forms/registry/Registry.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/Registry.dat with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : 304
    network: Encoding for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : null
    network: Disconnect connection to http://musetest/forms/registry/oracle/forms/registry/Registry.dat
    network: Cache entry not found [url: http://musetest/forms/registry/oracle/forms/registry/default.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/default.dat with proxy=DIRECT
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    network: Connecting http://musetest/forms/frmservlet?config=amrod&ifsessid=formsapp.14&acceptLanguage=en-us&ifcmd=startsession&iflocale=en-US with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780?ifcmd=getinfo&ifhost=Patel&ifip=169.254.25.129 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Deployment session certificate store
    Forms Applet version is 11.1.1.3
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/ellipsis.gif
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    basic: Applet started
    basic: Told clients applet is started
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/java/nullda_save.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_save.gif
    network: Connecting http://musetest/forms/java/nullda_exp.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_exp.gif
    network: Connecting http://musetest/forms/java/nullda_exp_o.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_exp_o.gif
    network: Connecting http://musetest/forms/java/nullda_print.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_print.gif
    network: Connecting http://musetest/forms/java/nullafinsrw.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullafinsrw.gif
    network: Connecting http://musetest/forms/java/nullda_delet.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_delet.gif
    network: Connecting http://musetest/forms/java/nullda_left.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_left.gif
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_first.gif
    network: Connecting http://musetest/forms/java/nullda_up.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_up.gif
    network: Connecting http://musetest/forms/java/nullda_down.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_down.gif
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_first.gif
    network: Connecting http://musetest/forms/java/nullda_right.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_right.gif
    network: Connecting http://musetest/forms/java/nullda_query.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_query.gif
    network: Connecting http://musetest/forms/java/nullda_summ.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_summ.gif
    network: Connecting http://musetest/forms/java/nullda_cal.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_cal.gif
    network: Connecting http://musetest/forms/java/nullda_calc.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_calc.gif
    network: Connecting http://musetest/forms/java/nullda_zoom.gif with proxy=DIRECT
    Loaded image: http://musetest/forms/java/nullda_zoom.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=rmQdPfpTrm1fXQ631kJpHRwW5KdCLnggLtC0t2wbYj8Z5m9H0bc0!-1851081780 with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_zoom.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_zoom.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_calc.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_calc.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_cal.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_cal.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_summ.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_summ.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_query.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_query.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_right.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_right.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_first.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_first.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_down.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_down.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_down.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_down.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_up.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_up.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_up.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_up.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_first.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_left.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_left.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_left.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_left.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_delet.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_delet.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullafinsrw.gif, version: null]
    network: Connecting http://musetest/forms/java/nullafinsrw.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_print.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_print.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_exp_o.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_exp_o.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_exp.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_exp.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_save.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_save.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/forms/java/nullda_save.gif, version: null]
    network: Connecting http://musetest/forms/java/nullda_save.gif with proxy=DIRECT

    I created Icons folder in Java folder. Moved myicons.jar to Icons folder
    Change my UI_CONS parameter to point to the icons folder. also changed registery.dat
    Regisrery.dat
    default.icons.iconpath=Icons/
    UI_ICONS
    C:\Oracle\Middleware\as_1\reports\plugins\resource;C:\Oracle\Middleware\as_1\forms\java\Icons
    Still I get Cached Entry not found in the java console.
    Java Plug-in 1.6.0_12
    Using JRE version 1.6.0_12 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\Administrator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@10ef90c
    network: Cache entry found [url: http://musetest/forms/java/frmwebutil.jar, version: null]
    network: Connecting http://musetest/forms/java/frmwebutil.jar with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmwebutil.jar : 304
    network: Encoding for http://musetest/forms/java/frmwebutil.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmwebutil.jar
    network: Cache entry found [url: http://musetest/forms/java/frmall.jar, version: null]
    network: Connecting http://musetest/forms/java/frmall.jar with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/java/frmall.jar : 304
    network: Encoding for http://musetest/forms/java/frmall.jar : null
    network: Disconnect connection to http://musetest/forms/java/frmall.jar
    security: Loading Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files\Java\jre1.6.0_12\lib\security\cacerts
    security: Loading Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loaded Deployment certificates from C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Internet Explorer TrustedPublisher certificate store
    security: User has granted the priviledges to the code for this session only
    security: Adding certificate in Deployment session certificate store
    security: Added certificate in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 159152 us, pluginInit dt 2683929 us, TotalTime: 2843081 us
    basic: Applet initialized
    basic: Loading Java Applet ...
    basic: Removed progress listener: sun.plugin.util.GrayBoxPainter$GrayBoxProgressListener@10ef90c
    basic: Applet made visible
    basic: Starting applet
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/bgnd.gif
    Forms Session ID is formsapp.2
    network: Cache entry found [url: http://musetest/forms/registry/oracle/forms/registry/Registry.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/Registry.dat with proxy=DIRECT
    network: ResponseCode for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : 304
    network: Encoding for http://musetest/forms/registry/oracle/forms/registry/Registry.dat : null
    network: Disconnect connection to http://musetest/forms/registry/oracle/forms/registry/Registry.dat
    network: Cache entry not found [url: http://musetest/forms/registry/oracle/forms/registry/default.dat, version: null]
    network: Connecting http://musetest/forms/registry/oracle/forms/registry/default.dat with proxy=DIRECT
    The proxy host is null, and the proxy port is 0.
    Native HTTP implementation is being used for the connection.
    The connection mode is HTTP.
    network: Connecting http://musetest/forms/frmservlet?config=amrod&ifsessid=formsapp.2&acceptLanguage=en-us&ifcmd=startsession&iflocale=en-US with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588?ifcmd=getinfo&ifhost=Patel&ifip=169.254.25.129 with proxy=DIRECT
    network: CleanupThread used 59744 us
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: Checking if certificate is in Deployment session certificate store
    Forms Applet version is 11.1.1.3
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/ellipsis.gif
    Loaded image: jar:http://musetest/forms/java/frmall.jar!/oracle/forms/icons/frame.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    basic: Applet started
    basic: Told clients applet is started
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_save.gif with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_save.gif
    network: Connecting http://musetest/Icons/da_exp.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_exp.gif
    network: Connecting http://musetest/Icons/da_exp_o.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_exp_o.gif
    network: Connecting http://musetest/Icons/da_print.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_print.gif
    network: Connecting http://musetest/Icons/afinsrw.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/afinsrw.gif
    network: Connecting http://musetest/Icons/da_delet.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_delet.gif
    network: Connecting http://musetest/Icons/da_left.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_left.gif
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_first.gif
    network: Connecting http://musetest/Icons/da_up.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_up.gif
    network: Connecting http://musetest/Icons/da_down.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_down.gif
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_first.gif
    network: Connecting http://musetest/Icons/da_right.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_right.gif
    network: Connecting http://musetest/Icons/da_query.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_query.gif
    network: Connecting http://musetest/Icons/da_summ.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_summ.gif
    network: Connecting http://musetest/Icons/da_cal.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_cal.gif
    network: Connecting http://musetest/Icons/da_calc.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_calc.gif
    network: Connecting http://musetest/Icons/da_zoom.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    Loaded image: http://musetest/Icons/da_zoom.gif
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Connecting http://musetest/forms/lservlet;jsessionid=vM0hPvJL2qPGPNRsQpbJn1byrGG0JCbpfmyNZZ2nk3GTrFY0TFJy!1859446588 with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_zoom.gif, version: null]
    network: Connecting http://musetest/Icons/da_zoom.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_calc.gif, version: null]
    network: Connecting http://musetest/Icons/da_calc.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_cal.gif, version: null]
    network: Connecting http://musetest/Icons/da_cal.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_summ.gif, version: null]
    network: Connecting http://musetest/Icons/da_summ.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_query.gif, version: null]
    network: Connecting http://musetest/Icons/da_query.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_right.gif, version: null]
    network: Connecting http://musetest/Icons/da_right.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_first.gif, version: null]
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_first.gif, version: null]
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_down.gif, version: null]
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_down.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_down.gif, version: null]
    network: Connecting http://musetest/Icons/da_down.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_up.gif, version: null]
    network: Connecting http://musetest/Icons/da_up.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_up.gif, version: null]
    network: Cache entry not found [url: http://musetest/Icons/da_first.gif, version: null]
    network: Connecting http://musetest/Icons/da_up.gif with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_first.gif with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_left.gif, version: null]
    network: Connecting http://musetest/Icons/da_left.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_left.gif, version: null]
    network: Cache entry not found [url: http://musetest/Icons/da_delet.gif, version: null]
    network: Connecting http://musetest/Icons/da_left.gif with proxy=DIRECT
    network: Connecting http://musetest/Icons/da_delet.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/afinsrw.gif, version: null]
    network: Connecting http://musetest/Icons/afinsrw.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_print.gif, version: null]
    network: Connecting http://musetest/Icons/da_print.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_exp_o.gif, version: null]
    network: Connecting http://musetest/Icons/da_exp_o.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_exp.gif, version: null]
    network: Connecting http://musetest/Icons/da_exp.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_save.gif, version: null]
    network: Connecting http://musetest/Icons/da_save.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT
    network: Cache entry not found [url: http://musetest/Icons/da_save.gif, version: null]
    network: Connecting http://musetest/Icons/da_save.gif with proxy=DIRECT
    network: Connecting http://musetest:80/ with proxy=DIRECT

  • Application server cannot log onto the database with user PS.

    Hello,
    First of all, my setup is:
    Microsoft Windows Server 2003
    Oracle database 10g Rel. 2
    Peopletools 8.49
    HRMS 9.0
    I am trying to boot the application server, but the operation fails with the error message:
    PSAPPSRV.5796 (0) [08/27/09 10:29:41](1) GenMessageBox(0, 0, M): Database Signon: Invalid user ID or password for database signon. (id=PS)
    I am able to sign on to the database with sqlplus and user PS.
    Here is my config settings as shown on the psadmin screen:
    Features Settings
    ========== ==========
    1) Pub/Sub Servers : No 15) DBNAME :[hrdmo]
    2) Quick Server : No 16) DBTYPE :[ORACLE]
    3) Query Servers : No 17) UserId :[PS]
    4) Jolt : Yes 18) UserPswd :[PS]
    5) Jolt Relay : No 19) DomainID :[TESTSERV]
    6) WSL : Yes 20) AddToPATH :[C:\oracle\product\10.2.0\database\bin]
    7) PC Debugger : No 21) ConnectID :[people]
    8) Event Notification: Yes 22) ConnectPswd:[peop1e]
    9) MCF Servers : No 23) ServerName :[appserver]
    10) Perf Collator : No 24) WSL Port :[7000]
    11) Analytic Servers : Yes 25) JSL Port :[9000]
    12) Domains Gateway : No 26) JRAD Port :[9100]
    Here is the appsrv.log:
    PSADMIN.2336 (0) [08/27/09 10:29:29](0) Begin boot attempt on domain hrdmo
    PSWATCHSRV.5480 (0) [08/27/09 10:29:38] Checking process status every 120 seconds
    PSWATCHSRV.5480 (0) [08/27/09 10:29:38] Server started
    PSAPPSRV.5796 (0) [08/27/09 10:29:40](0) PeopleTools Release 8.49 (WinX86) starting
    PSAPPSRV.5796 (0) [08/27/09 10:29:40](0) Cache Directory being used: C:\oracle\product\PT8.49\appserv\hrdmo\CACHE\PSAPPS
    RV_2\
    PSAPPSRV.5796 (0) [08/27/09 10:29:41](1) GenMessageBox(0, 0, M): Database Signon: Invalid user ID or password for databa
    se signon. (id=PS)
    PSAPPSRV.5796 (0) [08/27/09 10:29:41](0) Server failed to start
    PSWATCHSRV.5480 (0) [08/27/09 10:29:42] Shutting down
    PSADMIN.2336 (0) [08/27/09 10:29:48](0) End boot attempt on domain hrdmo
    As I said, despite the error message, I am able to log on to the database with sqlplus with user PS password PS.
    Could someone please help me with this problem? Thanks.

    I installed the database with the setup program and come to think of it, I don't think you can specify whether to create a system or demo database. So I probably didn't install a demo, which is what I wanted. I also ran the SQRs and everything showed the database was correct, so I thought I did it right.
    If I could install a demo with the setup program, I would do that because I think I could run through it pretty quickly having done it once. I've read in this forum and other places that it's much better to install the db manually, so maybe I'll just do that.
    In any case, thanks for all you help Nicolas.

  • JNDI on a Sun Application Server 9.0 from a Java SE Client

    Where do I go to find a listing of property pairs I have to set to allow my Java SE application to make use of JNDI (to find Session and Entity beans)?
    This is my approach from what I have read so far:
          Context context;
          Properties properties = new Properties();
            // Assign configuration properties here.
            try {
                context = new InitialContext(properties);
            } catch (NamingException ex) {
                ex.printStackTrace();
            // Put code here to start getting references to JNDI stuff....
            // ...and other neat Java EE things. :)If anyone in-the-know can help steer me a little on this, I'd be very grateful!
    My current setup is just a netbeans development environment. I'm using the included application server.

    I receive an exception in the J2SE client when trying to do lookups.
    I have created a simple test of a bean and a JMS Queue
    package ent1;
    @Remote
    public interface HelloWorld {
      public String sayHello();
      public void sendQueueMessage(String message);
    package ent1;
    @Stateless
    public class HelloWorldBean implements HelloWorld {
      @Resource(mappedName="jms/QueueFactory")
      private QueueConnectionFactory m_QueueFactory;
      @Resource(mappedName="jms/myQueue")
      private Queue m_Queue;
      private static final Logger logger = Logger.getLogger("ent1.HelloWorldBean");
      public HelloWorldBean() {
      public String sayHello() {
        return "Hello From "+this.getClass().toString()+"!";
      public void sendQueueMessage(String message) {
        Connection conn;
        Session session;
        MessageProducer producer;
        TextMessage msg;
        try{
          conn=m_QueueFactory.createQueueConnection();
          session=conn.createSession(false,Session.AUTO_ACKNOWLEDGE);
          producer=session.createProducer(m_Queue);
          msg=session.createTextMessage(message);
          producer.send(msg);
        }catch(JMSException e){
          logger.log(Level.SEVERE,e.getMessage(),e);
          return;
        logger.log(Level.INFO,"Message '"+message+"' sent");
    }And I can connect to the bean and Queue from an enterprise application with resource injection.
    But when I try to lookup the bean or JMS QueueConnectionFactory from an J2SE client..
        InitialContext ic;
        HelloWorld hello;
        Hashtable<String, String> env = new Hashtable<String, String>();
        env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");
        env.put("java.naming.provider.url", "iiop://localhost:3700");
        try{
          ic=new InitialContext(env);
          hello=(HelloWorld)ic.lookup("ent1.HelloWorld");
        }catch(NamingException ne){
        }or
        javax.jms.ConnectionFactory connectionFactory;
        try{
          ic=new InitialContext(env);
          connectionFactory=(javax.jms.ConnectionFactory)ic.lookup("jms/ConnectionFactory");
        }catch(NamingException ne){
        }I get an exception
    javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
            at com.sun.jndi.cosnaming.ExceptionMapper.mapException(ExceptionMapper.java:44)
            at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:484)
            at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:523)
            at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:501)
            at javax.naming.InitialContext.lookup(InitialContext.java:392)
            at jms_j2seconsumer.Main.main(Main.java:49)
    Caused by: org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
            at org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelper.java:72)
            at org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.java:406)
            at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:470)
            ... 4 more

Maybe you are looking for

  • How to pay missed payment without knowing account number and SSN

    Hello. I recently have problem paying a account that has been cancelled. I started use verizon wireless from 2009, at that time I was in college and just arrived U.S. so that means I didn't have a ssn at that time. But verizon wireless still let me h

  • Unable to start EPMA PROCESS MANAGER

    I'm having an issue starting the EPMA Process Manager service ERROR : Service cannot be started. Hyperion.DimensionServer.ProcessManager.Interface.ProcessManagerException: Cannot initialize the Session Manager. ---> System.ArgumentException: An item

  • This entry already exists in ODPS table

    Hi all, I took incoming payment from customer with payment means credit card , but when i try to deposit this credit card by accessing this Credit card in Deposit Window, system displays the message this entry already exists in ODPS table though it i

  • Frameset in HTTPService result?!

    Flex appears to be wrapping my XML in a frameset when I invoke my HTTPService's "send()" method, and this is screwing up the parsing of the response. (I'm getting the dreaded "Error 1090: XML Parser Error..." runtime error.) It's not being done by my

  • Jinitiator or Sun java plug-in

    I've been reading a lot of posts lately about jinitiator. From what I've been able to understand, it looks like jinitiator is going away and the sun java plug-in is what we should be using. Is there a definitive statement concerning this issue and is