Java 1.4.2 & Jinitiator

Please Help
We are about to upgrade our major financial system to a web based product using JRE 1.4.2_05, however some of our other applications use jinitiator, either 1.3.1.13 or 1.3.1.18. These products will not run alongside each other for obvious reasons. I have now been tasked with the job to make them work together. Any suggestions?????

I have found the answer to this problem......which should also work for you as long as you are using IE shortcuts to start your applications.
create a new ie shortcut as follows
"C:\Program Files\Internet Explorer\iexplore.exe" -new http://nnnnnn/TSA/WUIConnection.html
This will create a new ie session rather than a sister session.
When you start a new session, you can assign a new version of Java or Jiniator to each one, so you could in effect have as many different java/jinit sessions running at the same time as you wish, with no conflicts

Similar Messages

  • Java plug-in.  Java 1.4 or Jinitiator?

    My office has had numerous issues with Java while running Discoverer over the years. I noticed, in the Enterprise Manager console, that I have 2 choices for the Java plug-in. Sun Java plug-in (1.4) (what we use now) and Oracle Jinitiator. Given the issues we have had with Java I am tempted to try Jinitiator. Does anyone know the risks/drawbacks to trying Jinitiator? I tried googling exactly what Jinitiator does (compared to just Java), but the results were not very helpful. There must be a reason why there is an option to use one or the other, but I'm uncertain of Jinitiator's purpose (and how it will affect my users' Discoverer experience).
    Thanks!

    Hi,
    Oracle Jinitiator is based on JDK 1.3 (now long deprecated). It was an "enhanced" JRE to work with some specific features and coding with E-Business Suite forms. Discoverer also used it so that one could avoid JRE conflicts when using both E-BS Forms and the Discoverer Plus applet.
    I'm not sure if you are using an E-Business Suite shop or nor.
    The following documents might help you out:
    Recommended Client Java Plug-in (JVM/JRE) For Discoverer Plus 10g (10.1.2)     (Doc ID 465234.1)
    http://blogs.oracle.com/stevenChan/2010/05/jre_16020b5_fixes_ebs_issues.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+OracleE-BusinessSuiteTechnology+%28Oracle+E-Business+Suite+Technology%29
    http://blogs.oracle.com/stevenChan/2009/06/roundup_oracle_jinitiator_13_desupported_in_july_2.html
    I would recommend sticking with Java and addressing any issues you have with Oracle.
    Other comments welcomed.
    Regards,
    Steve.

  • Forms 10g - Java Plug-in x Jinitiator

    Hi
    I have one system that is runing with Jinitiator, when run this system with Java Plug-in just not work! I click in the botton to call form just to do nothing => OPEN_FORM(vsNome_programa || '.fmx',ACTIVATE,no_SESSION,NO_SHARE_LIBRARY_DATA,vpId).
    [jre611]
    connectMode=https
    baseHTML=basejpi.htm
    baseHTMLjinitiator=basejpi.htm
    baseHTMLjpi=basejpi.htm
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    jpi_mimetype=application/x-java-applet;version=1.4.2
    HTMLbodyAttrs=scroll="no" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
    pageTitle=COF-Administração de Contratos Financeiros
    separateFrame=true
    What is wrong?
    Marcos

    I am posting a section of the formsweb.cfg from my configuration. This allows windows clients use Jinitiator and Linux clients to use Sun JRE.
    [jtlsDDS33]
    envFile=jtls33.env
    ssoMode=true
    form=dds_start_frm
    pageTitle=JTLS DDS Forms
    webformsTitle=JTLS DDS Forms
    separateFrame=true
    imageBase=codeBase
    archive_jini=frmall_jinit.jar,jtlsdds.jar,frmrwinteg.jar,FormsGraph.jar
    archive=frmall.jar,jtlsdds.jar,frmrwinteg.jar,FormsGraph.jar
    logo=n
    lookAndFeel=oracle
    width=1280
    height=1024
    Thisi is also a section I created just to use the JRE instead of Jinitiator, please compare the one above. For this test, I intentionally set the ssoMode to false.
    [jtlsDDS34z]
    envFile=jtls34.env
    ssoMode=false
    config=jpi
    baseHTMLJInitiator=basejpi.htm
    form=dds_start_frm
    pageTitle=JTLS DDS Forms
    webformsTitle=JTLS DDS Forms
    separateFrame=true
    imageBase=codeBase
    archive=frmall.jar,jtlsdds.jar,frmrwinteg.jar,FormsGraph.jar
    logo=n
    lookAndFeel=oracle
    width=1280
    height=1024
    we are using dynamic java versioning for the JRE, the following is also from my formsweb.cfg configuration file. Please note, it is set to 1.5 and higher, so if you have 1.6_13 JRE on the clients, the following will still work. There is a recent whitepaper on OTN dated January 2009 (Oracle 10gR2 Forms Services - Using Sun's Java Plug-in), which also provides detailed information on using Sun JRE.
    # Parameter related to the version of the Java Plugin
    # The following is for statically defining the jre version, the second line
    # is for dynamically defining it (1.5 or higher). Given JTLS is configured
    # to work 1.5 or higher, we will use the dynamic one. But currently our application
    # uses JRE 1.5_05, so higher is recommended. Zafer, R&A 21 Oct 2005
    # jpi_classid=clsid:CAFEEFAC-0015-0000-0004-ABCDEFFEDCBA
    # We are using the dynamic setting instead of static for JTLS
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    # Parameter related to the version of the Java Plugin
    # If they dont have the related JRE, download the latest one
    # Parameter related to the version of the Java Pluginl-1_5_0_05-windows-i586.cab
    # If you want a specific version then it should be set like below
    # jpi_mimetype=application/x-java-applet;jpi-version=1.5.0_05
    # If you want to set a minimum version (this version or higher), then it
    # should be set like below (this is the default for our application)
    jpi_mimetype=application/x-java-applet;version=1.5
    Hope this proves useful.
    R/ Zafer

  • Problems con Jinitiator version

    Hi:
    My webforms works with Netscape and JInitiator, but on the botton
    appers a yellow ribbon with the next message: Warning: Applet
    Window.
    The problem is with trusted applet. I use Netscape 4.61 with
    JInitiator 1.1.5.21.1 my Developer Server is 6.0 with patchset
    3 (forms 6.0.5.31).
    My questions are:
    @what is the correct version of JInitiator with my configuration?
    Patchset 3 of Developer Server came with Jinitiator 1.1.7.16, but
    with this version I have problems, the applet windows is display
    but the forms is not.
    I think that this problem is occuring because there is problem
    whit applet sign.
    Can you help me??
    Thank you
    Polo
    null

    The java console display:
    Oracle JInitiator version 1.1.7.15.1
    Using JRE version 1.1.7.15.1o
    User home directory = C:\WINDOWS
    JAR caching enabled.
    Cache directory: C:\ARCHIVOS DE PROGRAMA\ORACLE\JINITIATOR
    1.1.7.15.1\jcache
    Maximum cache size: 20000000 bytes
    Opening http://koala.ilaco.gov.bo/web_code/f60splash.jar no proxy
    Opening http://koala.ilaco.gov.bo/web_code/f60common.jar no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/javax/swing/JInternalFrame.cla
    ss no proxy
    Opening http://koala.ilaco.gov.bo/false no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es_BOLIVIA.class no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es_BOLIVIA.properties no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es.class no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es.properties no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es_BOLIVIA.class no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es_BOLIVIA.properties no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es.class no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/engine/RunformBun
    dle_es.properties no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/registry/Registry
    .dat no proxy
    Opening
    http://koala.ilaco.gov.bo/web_code/oracle/forms/registry/sigma.da
    t no proxy
    Forms Applet version is : 4
    Opening http://koala.ilaco.gov.bo/web_code/f60rest.jar no proxy
    what is happen?
    Polo Alvarez (guest) wrote:
    : Hi:
    : My webforms works with Netscape and JInitiator, but on the
    botton
    : appers a yellow ribbon with the next message: Warning: Applet
    : Window.
    : The problem is with trusted applet. I use Netscape 4.61 with
    : JInitiator 1.1.5.21.1 my Developer Server is 6.0 with patchset
    : 3 (forms 6.0.5.31).
    : My questions are:
    : @what is the correct version of JInitiator with my
    configuration?
    : Patchset 3 of Developer Server came with Jinitiator 1.1.7.16,
    but
    : with this version I have problems, the applet windows is
    display
    : but the forms is not.
    : I think that this problem is occuring because there is problem
    : whit applet sign.
    : Can you help me??
    : Thank you
    : Polo
    null

  • Forms9i and Java-Library

    We worked with forms6i and it seemed that forms6i works with almost every Java-Library. Now we changed to Forms9i and we only can work with Java 1.4.2_05.
    Our customer are pretty unhappy with that. Is there any possibility to get rid of this limitation?
    Thanks
    Adrian

    Hi,
    doesn't sound right. Unless you are using JavaPlugin 1.4 that uses Java 1.4 you should be able to use Java 1.3. JInitiator is based on JSK 1.3 still. All client side code executes in teh VM of the JavaPlugin or Jinitiator.
    Frank

  • [Forms6i - PJC/BeanArea] java.io.IOException: open HTTP connection failed.

    Hi,
    I'm using a pjc on my forms but on runtime i received an error: open HTTP connection failed.
    The output of my java console is :
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = D:\documents and settings\OFV7600
    Proxy Configuration: Automatic Proxy Configuration
    JAR cache enabled
    Location: D:\documents and settings\OFV7600\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    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
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://do040001334/forms60java/f60all.jar from JAR cache
    Loading http://do040001334/hsd65-java/hst65.jar from JAR cache
    Loading http://do040001334/forms60java/classes12.jar.sig from JAR cache
    Loading http://do040001334/forms60java/cadtest.jar.sig from JAR cache
    Loading http://do040001334/forms60java/browser_jpkg.jar.sig from JAR cache
    Loading http://do040001334/forms60java/TutoFichier.jar.sig from JAR cache
    Loading http://do040001334/forms60java/stip.jar.sig from JAR cache
    Loading http://do040001334/forms60java/pkg_scroll.jar.sig from JAR cache
    Loading http://do040001334/forms60java/client.jar.sig from JAR cache
    Loading http://do040001334/forms60java/pkg_geosoft.jar.sig from JAR cache
    Loading http://do040001334/forms60java/cadtest20060320.jar.sig from JAR cache
    connectMode=Socket
    serverHost=DO040001334
    serverPort=9000
    Forms Applet version is : 60824
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Where is my problem ?
    How to resolve my problem ?
    Thanks

    thanks,
    I had do the classpath
    Now, I have another problem
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = D:\documents and settings\OFV7600
    Proxy Configuration: Automatic Proxy Configuration
    JAR cache enabled
    Location: D:\documents and settings\OFV7600\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    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
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://do040001334/forms60java/f60all.jar from JAR cache
    Loading http://do040001334/hsd65-java/hst65.jar from JAR cache
    Loading http://do040001334/forms60java/classes12.jar.sig from JAR cache
    Loading http://do040001334/forms60java/cadtest.jar.sig from JAR cache
    Loading http://do040001334/forms60java/browser_jpkg.jar.sig from JAR cache
    Loading http://do040001334/forms60java/TutoFichier.jar.sig from JAR cache
    Loading http://do040001334/forms60java/stip.jar.sig from JAR cache
    Loading http://do040001334/forms60java/pkg_scroll.jar.sig from JAR cache
    Loading http://do040001334/forms60java/client.jar.sig from JAR cache
    Loading http://do040001334/forms60java/pkg_geosoft.jar.sig from JAR cache
    Loading http://do040001334/forms60java/cadtest20060320.jar.sig from JAR cache
    connectMode=Socket
    serverHost=DO040001334
    serverPort=9000
    Forms Applet version is : 60824
    _____START CADViewerWrapper() constructor_____
    Running CADViewer 8.0.6d
    Exception =java.security.AccessControlException: access denied (java.io.FilePermission viewer.cfg read)
    java.security.AccessControlException: access denied (java.io.FilePermission viewer.cfg read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkRead(Unknown Source)
         at java.io.File.isDirectory(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
         at com.cadviewer.be.a(Unknown Source)
         at com.cadviewer.be.do(Unknown Source)
         at com.cadviewer.e0.m(Unknown Source)
         at com.cadviewer.e0.a(Unknown Source)
         at com.cadviewer.ViewerAWT.<init>(Unknown Source)
         at cadtest20060320.CADViewerWrapper2.<init>(CADViewerWrapper2.java:78)
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    url=file:/d:/acad_B/es/cat/STIP/Extract/410009.dwf
    url=file:/d:/acad_B/es/cat/STIP/Extract/410009.dwf
    Netscape security model is no longer supported.
    Please migrate to the Java 2 security model instead.
    Netscape security model is no longer supported.
    Please migrate to the Java 2 security model instead.
    protocol=file,fileURL.getHost()=,fileURL.getPort()=-1,fileURL.getFile()=/d:/acad_B/es/cat/STIP/Extract/410009.dwf
    FileToArray url=file:/d:/acad_B/es/cat/STIP/Extract/410009.dwf
    longName=dummy.dwf
    java.lang.NullPointerException
         at java.awt.Container.addImpl(Unknown Source)
         at java.awt.Container.add(Unknown Source)
         at cadtest20060320.CADViewerWrapper2.<init>(CADViewerWrapper2.java:84)
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    __START CadWrapper public void init
    __END CadWrapper public void init
    What about

  • JInitiator Startup Performance

    We're having major problems with performance on the rollout of web-deployed
    application, thought to be due to performance problems with the loading of
    JInitiator (using version 1.3.1.18).
    It's happening on both our windows 2000 and xp machines. After a cold restart
    on a PC it could take up to 50 seconds to load webforms, when connected to a
    100Mb/s network.
    The second time web SSIS is loaded the system takes 9 seconds to load.
    This problem is consistent every time webforms is started after a cold restart
    and I'm aware other teams using different versions of JInitiator are having the
    same problem.
    Although the performance problem is bearable at our central site we have many
    users who dial in to the application server, and many more users connecting via
    slow ISDN links and in some cases it takes them over 6 minutes to load web
    forms application, which is really unacceptable for our users. The second time
    it is loaded it takes 20 seconds.
    Any ideas on the cause and how it can be fixed would really be appreciated.
    We've checked the logs on both the java console on loading JInitiator, and on
    the web server and the jar files are being used from the cache, so this isn't
    the problem.

    "Cold Restart" - restart of the client PC (shut down & reboot). The application server is left running the whole time.
    I have checked the access log on the web server as well as the Java console and the JAR files are not being re-downloaded, this was my initial thought as well.
    The delay seems to be consistently in the startup of JInitiator, even before the JAR file /forms60java/f60all_jinit.jar is loaded.
    I have several IDX files (eg: f60all_jinit.jar-683bf89b-321de17c*.idx - 163Kb) in my Oracle Jar Cache that seem to be download everytime webforms is loaded (based on the modified timestamp). There is 1 IDX file in the Oracle Jar Cache for every JAR file downloaded.
    Any ideas on what these file are and why there are being downloaded as this may be a factor that affects performance?

  • Conflicts between jinitiator and sun jvm:  is webstart a viable solution?

    We currently have a problem where our users have to use multiple sessions in order to keep Sun's JVM from loading in the same IE instance that Jinitiator 1.3.1.21 is running. When jinitiator loads after java is already running, ie exits with a C++ exception, not very friendly to our users.
    Our current solution instructs people to launch the browser in a separate memory space, but that is very tedious to explain to users. We have multiple vendor-provided fat java applets (one using jinitiator, one using sun jvm)
    I've seen some messages on this forum regarding switching the applet into a full blown application running from webstart. What this would do for us is allow us to keep the two jvms separate when they are launched from webstart.
    1) Does anyone else have this problem and have a different solution?
    2) Is it possible from a jnlp file to indicate that jinitiator should be chosen to run the applet/application?
    - from http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/syntax.html#resources I see <j2se version="1.4+"/> can be picked to choose a jvm in order of preference.
    Is there anything specific about jinititator that would allow it to be indicated on the version line? Has anyone done this?
    Thanks,
    Chris

    The easiest solution would probably be to use the same JRE for all applications. Sun JRE 1.4.x is certified with most Forms versions, however refer to the Forms Client Statement of Direction for your Forms version.
    Forms 6i
    http://www.oracle.com/technology/products/forms/htdocs/clientsod_forms6i.html
    Forms 9i
    http://www.oracle.com/technology/products/forms/htdocs/clientsod_forms9i.html
    Forms 10g (9.0.4)
    http://www.oracle.com/technology/products/forms/htdocs/10g/clientsod_forms10g.html

  • Jinitiator 1.3.1.28 and IE7

    Hello,
    When running our forms application in IE7, it hangs when closing the browser window.
    The same application has no problem when running in IE6.
    The clients have Windows XP. We use webforms 10.1.2.2 and Jinitiator 1.3.1.28, which is certified against IE7 (see http://www.oracle.com/technology/products/forms/htdocs/10gR2/clientsod_forms10gR2.html).
    If we first open the java console window of jinitiator, we are able to close the browser window without any problem, but this is not a solution for the users.
    Any suggestions to solve this, are welcome,
    kind regards,
    Els

    I must have been a little quick! The matrix is now updated.
    And I managed to find 1.28 on Metalink.

  • Proble with browser or jinitiator

    i m using Oracle 10g for Forms and Reports Develpment and i have Windows XP SP2 OS and 2GB RAM
    i m designing and developing the oracle forms and when i want to see the output the IE 7 and Mozilla both are not showing the output and not any kind of message i am getting from this.
    I have Java and Jinitiator 1.3
    so what i should do now n how to see my output of forms
    plz suggest me
    my mail id is
    [email protected]

    Is the browser just crashing and disappearing?
    If so, it looks like it fails horribly when starting up the java virtual machine (either JInitiator or Sun JVM).
    Try to access the test form that ships with Oracle Forms:
    http://server.example.com:port/forms/frmservlet
    Then also try to access
    http://server.example.com:port/forms/frmservlet?config=jpi
    to force the use of Sun JVM over JInitiator.
    Could be that the JVM and/or JInitiator installation is messed up. You could try reinstalling them and while you're at it, please also test these URLs from another workstation

  • Trying to use webutil  - Works in development, will not work on app server.

    I am having a similar problem. I have followed all the instructions from above.
    I run my code in the developer and it runs fine. If I run my code from the application server I get locked up.
    Here is the output from my java console.
    Oracle JInitiator: Version 1.3.1.28
    Using JRE version 1.3.1.28-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\BrianG.PSSI
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\BrianG.PSSI\Oracle Jar Cache28
    Maximum size: 1,024 MB
    Compression level: 0
    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
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://smprdap2.pssi.local/forms/java/frmall_jinit.jar from JAR cache
    Loading http://smprdap2.pssi.local/forms/java/frmwebutil.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.6
    Loading http://smprdap2.pssi.local/forms/java/esteelman.jar from JAR cache
    Loading http://smprdap2.pssi.local/forms/java/sticons.jar from JAR cache
    Loading http://smprdap2.pssi.local/forms/java/jacob.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.3
    Exception occurred during event dispatching:
    java.lang.NoSuchMethodError
         at oracle.forms.webutil.common.VBeanCommon.init(VBeanCommon.java:281)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    This is the configuration I an trying to use is:
    [SMT1]
    form=st_menu.fmx
    imageBase=CodeBase
    width=1020
    height=740
    separateFrame=true
    splashScreen=/forms/steelman/images/logo.gif
    background=no
    lookAndFeel=Oracle
    colorScheme=purple
    logo=/forms/steelman/images/small_logo.gif
    formsMessageListener=
    recordFileName=
    pjcRegisterApplet=oracle.forms.demos.util.RegisterCertificate
    pjcArchive=esteelman.jar
    baseHTMLjinitiator=signedjini.htm
    baseHTMLJinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm.
    WebUtilArchive= esteelman.jar,sticons.jar, frmall_jinit.jar, frmwebutil.jar,jacob.jar
    archive_jini=frmall_jinit.jar,esteelman.jar,sticons.jar,frmwebutil.jar,jacob.jar,
    em_mode=1
    serverApp=/steelman/conf/steelman
    envFile=C:\steelman\conf\smt1.env
    If i do not use baseHTMLjinitiator=signedjini.htm
    our application will not launch at all.

    The first problem I see is that you are using an old version of WebUtil, which is not supported for use with Forms 10.1.2.3 and is probably the cause of the problem.
    RegisterWebUtil - Loading WebUtil Version 1.0.6
    The correct versions of frmwebutil.jar and webutil.pll are applied to Developer Suite installations and can be copied to Application Server. If you do not have an iDS installation, you can install the latest Forms Bundle patch which includes the correct WebUtil files. Refer to Patch ID 9593176 and Note 1188127.1. Be sure to review the ReadMe included with the patch.
    The second problem is that you are using Jinitiator. Jinitiator has been obsolete for a long time. However, if you have some reason why you must use it, I would recommend that you at least get the last version released (1.3.1.30). This can be downloaded from within MyOracleSupport (account required) using Patch ID 7410076. If you do not have access to MyOracleSupport and you are using Forms 10.1.2.3, then you can use JRE6 (1.6.0_37). Do not attempt to use JRE7
    http://www.oracle.com/technetwork/java/javase/downloads/jre6u37-downloads-1859589.html
    You would need to install the 32bit version: jre-6u37-windows-i586.exe
    References:
    <li>Note: 566628.1
    <li>Note: 561273.1

  • Error in form10g release 2

    I am using form10g relese 10.1.2.0.2 I am getting the error
    .ORACLE.FORMS.WEBUTIL.FILE.FILEFUNCTION BEAN IS NOT FOUND
    WEBUTIL_FILE.FILE_SELECTION_DIALOG_INT WILL NOT WORK
    when I press the button to get file name from client side the simple trigger is written on the button
    :t:=client_get_file_name(null,null,null,null,open_file,true);
    and I also attached webuitl.pll and I Drag WEBUTIL from WebUtil Objects to the “Object Groups”
    Click on [Copy]
    and the java console out put is shown below its seems that java bean are not avaible but when i swtich to the webutil canvasa from form it give me error FRM-13008 CANNOT FIND JAVA BEAN WITH NAME '\oracle\forms.webutil.ole.olefunction'.
    JAVA CONSLOE OUTPUT
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\AdministratorProxy Configuration: no proxyJAR cache enabled
    Location: C:\Documents and Settings\Administrator\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0----------------------------------------------------
    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
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    ----------------------------------------------------Loading http://jip615:8889/forms/java/frmall_jinit.jar from JAR cacheproxyHost=nullproxyPort=0connectMode=HTTP, native.Forms Applet version is : 10.1.2.0java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)     at oracle.forms.engine.Runform.startRunform(Unknown Source)     at oracle.forms.engine.Main.createRunform(Unknown Source)     at oracle.forms.engine.Main.start(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)
    and my formsweb.cfg is as follows# $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    #baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx,fileuploader90.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services - WebUtil
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=/forms/demo/images/blue.gif
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    Webutil_config=e:\dev10g\forms\server\webutil.cfg
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,22
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=0
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=e:\dev10g
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=True
    #lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    width=100%
    height=100%
    lookAndFeel=oracle
    envFile=default.env
    and my webutil.cfg is as follows
    # webutil.cfg - WebUtil default configuration file
    # This file provides all of the configuration settings for webutil. These are
    # divided into the following sections:
    # 1. Logging Options
    # 2. Installation Options
    # 3. FileUpload and Download Options
    # 1. Server Side Logging Options for logging errors and log messages
    # You must set logging.enabled to true to allow mid-tier logging. Without this
    # mid-tier logging will not take place no matter what PL/SQL or URL options
    # are supplied to switch it on. Once logging is enabled the other settings come
    # into play.
    # Details
    # logging.file : Defines the file name and location of the log file.
    # Note that WebUtil does no log file management. You may
    # need to manually clean this file up from time to time.
    # logging.enabled : Can be TRUE or FALSE
    # logging.errorsonly : Can be TRUE or FALSE. Setting to true will ensure that
    # only errors and not normal informational log messages
    # are written to the log file. For product use this would
    # normally be set to TRUE
    # logging.connections: Can be TRUE or FALSE. Setting to true will cause each
    # connection from a client using WebUtil to write into
    # the log as it sets up.
    logging.file=
    logging.enabled=FALSE
    logging.errorsonly=FALSE
    logging.connections=FALSE
    # 2. Installation Options
    # WebUtil needs to download some files to the client in order to perform
    # certain integration operations such as OLE or Registry Access. These files
    # are downloaded the first time that you access one of the functions that need
    # them. You have to define the location of these files on the server
    # Details
    # install syslib.location : The virtual path to the directory holding the
    # webutil library files on the server side. This
    # must either be an absolute URL or a URL that is
    # relative to the documentbase
    # install.syslib.<os>.<package>.<n> :
    # The name(s) of the libraries required for
    # particular webutil beans. The format of this is
    # name|size|version|showDownloadDialog. Multiple
    # libraries can be downloaded per package. But
    # ensure that the <n> values are consecutive and
    # start at 1
    install.syslib.location=/webutil
    # Change size and version if necessary, like when upgrading the library.
    # Normally this would not be required since most of these libraries come with
    # install itself.
    install.syslib.0.7.1=jacob.dll|94208|1.0|true
    install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
    install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
    # You can also add your own libraries in here, e.g.
    #install.syslib.0.user.1=testwebutil.dll|204872|1.0|true
    # 3. Upload / Download options
    # For the file upload and download options you can define the default locations
    # on the server that webutil can use as a work area. Optionally you can switch
    # upload and download off
    # Details
    # transfer.database.enabled : Can be TRUE or FALSE - allows you to disable
    # upload and download from the database server.
    # transfer.appsrv.enabled : Can be TRUE or FALSE - allows you to disable
    # upload and download from the application
    # server.
    # transfer.appsrv.workAreaRoot: The root of the location in which WebUtil can
    # store temporary files uploaded from the client.
    # If no location is specified, Application Server
    # user_home/temp will be assumed.
    # This location is always readable and writable
    # no matter what the settings in
    # transfer.appsrv.* are. This setting is
    # required if you need the Client side
    # READ/WRITE_IMAGE_FILE procedures.
    # transfer.appsrv.accessControl:Can be TRUE or FALSE - allows you to indicate
    # that uploads and downloads can only occur from
    # the directories named in the
    # transfer.appsrv.read.n and
    # transfer.appsrv.write.n entries and their
    # subdirectories. If this setting is FALSE,
    # transfers can happen anywhere.
    # transfer.appsrv.read.<n>: List of directory names that downloads can read
    # from.
    # transfer.appsrv.write.<n>: List of directory names that uploads can write
    # to.
    #NOTE: By default the file transfer is disabled as a security measure
    transfer.database.enabled=FALSE
    transfer.appsrv.enabled=FALSE
    transfer.appsrv.workAreaRoot=
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    install.syslib.0.user.1=ffisamp.dll|40960|1.0|true
    install.syslin.location=/webutil
    install.syslib.location=http://jip615:8889/forms/webutil
    ## change 2nd value to correct file size to avoid raising an error
    install.syslib.0.7.1=jacob.dll|94208|1.0|true
    install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
    install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
    #Application custom libraries
    install.syslib.0.user.1=scanner.dll|23056|1.0|true
    install.syslib.0.user.1=mortgagecalc.dll|100230|1.0|true
    archive_jini=f90all_jinit.jar,frmwebutil.jar,jacob.jar
    WebUtilArchive=frmwebutil.jar,jacob.jar
    transfer.APPSRV.READ=C:\
    transfer.APPSRV.WRITE.1=C:\WORK\UPLOAD
    transfer.APPSRV.WRITE.2=C:\WORK\LOG
    transfer.appsrv.workAreaRoot=d:\temp
    transfer.appsrv.accessControl=TRUE
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    and my default enviornment file is as follows# $Id: default.env 14-apr-2005.13:22:43 pkuhn Exp $
    # default.env - default Forms environment file, Windows version
    # This file is used to set the Forms runtime environment parameters.
    # If a parameter is not defined here, the value in the Windows registry
    # will be used. If no value is found in the registry, the value used will
    # be that defined in the environment in which the servlet engine (OC4J
    # or JServ) was started.
    # NOTES
    # 1/ The Forms installation process should replace all occurrences of
    # <percent>FORMS_ORACLE_HOME<percent> with the correct ORACLE_HOME
    # setting, and all occurrences of <percent>O_JDK_HOME<percent> with
    # the location of the JDK (usually $ORACLE_HOME/jdk).
    # Please make these changes manually if not.
    # 2/ Some of the variables below may need to be changed to suite your needs.
    # Please refer to the Forms documentation for details.
    ORACLE_HOME=e:\dev10g
    # Search path for Forms applications (.fmx files, PL/SQL libraries)
    # If you need to include more than one directory, they should be semi-colon
    # separated (e.g. c:\test\dir1;c:\test\dir2)
    FORMS_PATH=C:\Forms10gR2READ_FOLDER;e:\dev10g\forms
    # webutil config file path
    WEBUTIL_CONFIG=e:\dev10g\forms\server\webutil.cfg
    # Disable/remove this variable if end-users need access to the query-where
    # functionality which potentially allows them to enter arbitrary SQL
    # statements when in enter-query mode.
    FORMS_RESTRICT_ENTER_QUERY=TRUE
    # The PATH setting is required in order to pick up the JVM (jvm.dll).
    # The Forms runtime executable and dll's are assumed to be in
    # e:\dev10g\bin if they are not in the PATH.
    # In addition, if you are running Graphics applications, you will need
    # to append the following to the path (where <Graphics Oracle Home> should
    # be replaced with the actual location of your Graphics 6i oracle_home):
    # ;<Graphics Oracle Home>\bin;<Graphics Oracle Home>\jdk\bin
    PATH=e:\dev10g\bin;e:\dev10g\jdk\jre\bin;e:\dev10g\jdk\jre\bin\client;e:\dev10g\jlib;
    e:\dev10g\jre\1.4.2\bin\client;e:\dev10g\jre\1.4.2\bin;f:\oracle\product\10.2.0\db_1\BIN
    ;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;f:\oracle\product\10.2.0\db_1\jdk;e:\dev10g\jdk\bin
    # Settings for Graphics
    # NOTE: These settings are only needed if Graphics applications
    # are called from Forms applications. In addition, you will need to
    # modify the PATH variable above as described above.
    # Please uncomment the following and put the correct 6i
    # oracle_home value to use Graphics applications.
    #ORACLE_GRAPHICS6I_HOME=<your Graphics 6i oracle_home here>
    # Search path for Graphics applications
    #GRAPHICS60_PATH=
    # Settings for Forms tracing and logging
    # Note: This entry has to be uncommented to enable tracing and
    # logging.
    #FORMS_TRACE_PATH=<FORMS_ORACLE_HOME>\forms\server
    # System settings
    # You should not normally need to modify these settings
    FORMS=e:\dev10g\forms
    # Java class path
    # This is required for the Forms debugger
    # You can append your own Java code here)
    # frmsrv.jar, repository.jar and ldapjclnt10.jar are required for
    # the password expiry feature to work(#2213140).
    CLASSPATH=e:\dev10g\forms\webutil;
    e:\dev10g\forms\java\frmwebutil.jar;e:\dev10g\forms\java\jacob.jar;
    e:\dev10g\j2ee\OC4J_BI_Forms\applications\formsapp\formsweb\WEB-INF\lib\frmsrv.jar;
    e:\dev10g\jlib\repository.jar;
    e:\dev10g\jlib\ldapjclnt10.jar;
    e:\dev10g\jlib\debugger.jar;
    e:\dev10g\jlib\ewt3.jar;
    e:\dev10g\jlib\share.jar;
    e:\dev10g\jlib\utj.jar;
    e:\dev10g\jlib\zrclient.jar;
    e:\dev10g\reports\jlib\rwrun.jar;
    e:\dev10g\forms\demos\jars\uploadserver.jar;
    e:\dev10g\jdk\jre\lib\rt.jar;
    e:\dev10g\forms\demos\lib;
    e:\dev10g\forms\demos\\fileupload\forms
    and I can able to successfully sign the .jar file from the same location.
    with the following command to ensure the certification
    jarsigner –verify e:\dev10g\forms\java\frmwebutil.jar
    jarsigner –verify e:\dev10g\forms\java\jacob.jar
    And in both commands the result was:
    jar verified
    but I didn't find the frmwebutil.jar.unsigned and jacob.jar.unsigned but frmwebutil.jar.old and jacob.jar.old file is existing there.
    Plz help me its very urgent for me
    and I hope any will give best solution for this problem.

    Do the following steps hope u will success
    Requirement:
    Jacob 1.8 (Do not attempt to use 1.7 or 1.9.)
    Nls language in the registry should be English only one time till we compile the webutil.pll libaray once it compile you can change to any nls language.
    Setps to follow:
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    And also download webuitl 1.6 and extract to temporary staging area.
    2) copy Jacob.jar and Jacob.dll to [ora_home]\forms\java\. and [ora_home]\forms\webutil\.
    Replace frmwebutil.jar with [ora_home]\forms\java\frmwebutil.jar
    Which was extracted from nw webuitl.zip file
    3)Set the path for jdk
    Open a DOS command prompt.
    Add [OraHome]\jdk\bin to the PATH:
    c:\set PATH=d:\10g\jdk\bin;%PATH%
    3) From the command prompt Sign the files, and check the output for success:
    [ora_home]\forms\webutil\sign_webutil.bat [ora_home]\forms\java\frmwebutil.jar
    [ora_home]\forms\webutil\sign_webutil.bat [ora_home]\forms\java\jacob.jar
    4) Modify d:\10g\\forms\server\default.env, and append [ora_home]\jdk\jre\lib\rt.jar
    to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to any schema.
    Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
    8) ) Create a new FMB.
    Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
    There is no need to Subclass the WebutilConfig object.
    Attach the Webutil.pll Library, and remove the path.
    Add an ON-LOGON trigger with the code
    NULL;
    Create a new button on a new canvas or any existing canvas but not in webutil canvas, with the code
    show_webutil_information (TRUE);
    in a WHEN-BUTTON-PRESSED trigger.
    Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
    the "Application Server URL" is empty.
    Then append http://server:port/forms/frmservlet?config=webutil
    10) Run your form.

  • Problem Playing Audio in Forms 6i On Web

    Hi there,
    I'm trying to get sound out of a form running over the web under Forms 6i using JDK 1.1.8 and after two solid days of reading documentation, scanning Oracle's support sites and searching the web I've been unable to figure out what I need to do to get sound to work in this environment. The maddening part is that I've been able to do it under Forms 9i and JDeveloper (using Java2) 9i so I know how easy this should be. Unfortunately, 9i is not our corporate standard yet so I am forced to go the 6i route instead for now.
    Based on my research I find it impossible to believe that I'm dealing with that complex a problem and that if any of you have managed to figure it out it won't require that much time to pass it on.
    Okay, if you are still reading then I thank you and hope that you'll be able to help. The specifics of my situation are as follows:
    -Using Oracle 8.1.7 as the database but that's pretty much irrelevant here as I do no database access in this simplified form I'm testing in.
    -Forms Server and Form Builder 6i (version 6.0.8.13.0) running on Solaris and being used to develop a simple form with just one button on it which implements my PJC. My real need is a bit more complex but this is fine for a start.
    -JDeveloper 3.2.3 used to develop the PJC, compiled with the 1.1.8 JDK and deployed to a standard JAR file.
    -Have tried signing my JAR file and resigning the f60all.jar using the same user. Have tried not signing either one. Have tried just signing one of the two. I believe I've tried every combination here with the one that gets me the furthest being the scenario where I don't sign mine and just use the standard one that came with the Forms install. This allows me to get my form up on the screen and at least try to play the sound.
    -The code for the PJC is as follows. This code was mostly auto-generated by JDev with the setproperty function and its debug code having been created by me using my successfull 9i experiment code as the base. Anyway, here is the PJC code.
    // Copyright (c) 1999 Oracle Corporation
    package soundpkg;
    import oracle.forms.ui.*;
    import oracle.forms.properties.ID;
    import java.net.URL;
    import java.applet.*;
    public class sound extends VButton {
    public final static ID PLAY = ID.registerProperty("PLAY");
    public String sou_loc = "http://rhqt-oracle.on.prv:6900/las/paul.wav";
    public sound() {
    super();
    try {
    jbInit();
    catch (Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    public boolean setProperty(ID property, Object value) {
    if (property == PLAY)
    try
    System.out.println("before soundplay");
    sou_loc = value.toString();
    System.out.println(sou_loc);
    URL sou = new URL(sou_loc);
    System.out.println("1");
    Applet testapp = new Applet();
    System.out.println("2");
    AudioClip clip = testapp.getAudioClip(sou);
    System.out.println("3");
    clip.play();
    System.out.println("after soundplay");
    return true;
    } catch(Exception ex)
    ex.printStackTrace();
    return super.setProperty(property, value);
    Pretty much the only change from my 9i code was to the function call for opening the audio file.
    Under Jdev 9i, using Java2 it was:
    AudioClip clip = Applet.newAudioClip(sou);
    Under Jdev 3.2.3 and using JDK 1.1.8 (have to in order to work with Forms 6i) I changed it to:
    AudioClip clip = testapp.getAudioClip(sou);
    From all of my reading, I thought this SHOULD have worked. But, of course, it doesn't. One possible problem is the fact that I was forced to create a new instance of Applet in order to be able to reference the getAudioClip function. My other two attempts to reference it without creating a new instance were:
    1)Just access it on its own:
    AudioClip clip = getAudioClip(sou);
    - This resulted in the expected, "method getAudioClip(java.net url) not found in class soundpkg.sound" error
    2)Access it by first referencing Applet
    AudioClip clip = Applet.getAudioClip(sou);
    - This resulted in a, "non-static method getAudioClip(java.net.URL) cannot be referenced from a static context", message
    Hence, how I wound up creating the new instance and using it to access the getAudioClip function. Maybe this was the wrong way to troubleshoot it but, being new to Java and about five years removed from my C++ experience, it was the best I could come up with and it at least allowed me to compile. However, once I click on my button to play the sound I get the following error output from the Java Console. I've left the beginning info on just in case version numbers are required or something. Seemingly, the more relevant stuff comes later, beginning with the line generated by my debug code saying "before soundplay". Though, I must admit I'm curious as to why I'm getting all of those other, "opening blah blah blah no proxy", messages as well but they don't seem to be stopping me from running the form so I've ignored them for now. Anyway, here are the errors thrown up by the Java Console:
    OUTPUT FROM JAVA CONSOLE FOLLOWS
    Oracle JInitiator version 1.1.8.10
    Using JRE version 1.1.8.10
    User home directory = C:\Documents and Settings\duane.colucci
    Proxy Configuration: Manual Configuration
    Proxy: blvgate.on.prv:80
    Proxy Overrides: *.prv,10.*,*.hrdc-drhc.net
    JAR caching enabled.
    Cache directory: C:\Program Files\Oracle\JInitiator 1.1.8.10\jcache
    Maximum cache size: 50000000 bytes
    Opening http://svr02113075.on.prv:8200/web_code/f60all.jar no proxy
    Loading http://svr02113075.on.prv:8200/web_code/f60all.jar from JAR cache.
    Opening http://svr02113075.on.prv:8200/web_code/sound118.jar no proxy
    Loading http://svr02113075.on.prv:8200/web_code/sound118.jar from JAR cache.
    Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/engine/MainBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/MainBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/oracle/ewt/swing/JBufferedAppletBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/JBufferedAppletBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/oracle/ewt/lwAWT/BufferedAppletBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/BufferedAppletBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/oracle/ewt/popup/PopupAppletBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/sun/beans/infos/PopupAppletBeanInfo.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/engine/RunformBundle_en_CA.class no proxy
    Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/engine/RunformBundle_en_CA.properties no proxy
    Opening http://svr02113075.on.prv:8200/web_code/oracle/forms/registry/Registry.dat no proxy
    connectMode=Socket
    serverHost=svr02113075.on.prv
    serverPort=9001
    Forms Applet version is : 60813
    before soundplay
    http://rhqt-oracle.on.prv:6900/paul.wav
    1
    2
    java.lang.NullPointerException:
         at java.applet.Applet.getAppletContext(Applet.java:138)
         at java.applet.Applet.getAudioClip(Applet.java:240)
         at soundpkg.sound.setProperty(sound.java:57)
         at oracle.forms.handler.ComponentItem.setCustomProperty(Compiled Code)
         at oracle.forms.handler.ComponentItem.onUpdate(Compiled Code)
         at oracle.forms.handler.ButtonItem.onUpdate(Unknown Source)
         at oracle.forms.handler.UICommon.onUpdate(Compiled Code)
         at oracle.forms.engine.Runform.onUpdateHandler(Compiled Code)
         at oracle.forms.engine.Runform.processMessage(Compiled Code)
         at oracle.forms.engine.Runform.processSet(Compiled Code)
         at oracle.forms.engine.Runform.onMessageReal(Compiled Code)
         at oracle.forms.engine.Runform.onMessage(Compiled Code)
         at oracle.forms.engine.Runform.processEventEnd(Compiled Code)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Compiled Code)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Compiled Code)
         at java.awt.Component.dispatchEventImpl(Compiled Code)
         at java.awt.Container.dispatchEventImpl(Compiled Code)
         at java.awt.Component.dispatchEvent(Compiled Code)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Compiled Code)
         at java.awt.LightweightDispatcher.processMouseEvent(Compiled Code)
         at java.awt.LightweightDispatcher.dispatchEvent(Compiled Code)
         at java.awt.Container.dispatchEventImpl(Compiled Code)
         at java.awt.Window.dispatchEventImpl(Compiled Code)
         at java.awt.Component.dispatchEvent(Compiled Code)
         at java.awt.EventDispatchThread.run(Compiled Code)
    As you can see from the output and a quick glance at my code above, the program crashes out on the line where I attempt to call the getAudioClip function. And that's about it. This is where I'm stumped. So, again, any help anybody can provide is greatly appreciated.
    Thanks in advance,
    Duane Colucci

    Duane,
    don't knowwhy you chose to extend VButton, but the following code works for me. Note that I extend the VBean class. Also I am using Jinitiator 1.3.1.9 (this is what I had available for testing). My first test chowed that there was a problem with the way you specify teh URL string, which is why I harcoded the URL string when building the URL.
    Another issue when running it is that you need to sign the file because it needs socket permission (at least this was the error shown on a remote client).
    Here's the code
    package mypackage3;
    import oracle.forms.ui.*;
    import oracle.forms.properties.ID;
    import java.net.URL;
    import java.applet.*;
    import javax.swing.JTextField;
    import oracle.forms.handler.IHandler;
    public class Class1 extends VBean {
    public final static ID PLAY = ID.registerProperty("PLAY");
    private IHandler mHandler = null;
    public Class1()
    super();
    public void init(IHandler handler)
    mHandler = handler;
    super.init(handler);
    public boolean setProperty(ID property, Object value) {
    if (property == PLAY)
    try
    System.out.println("before soundplay");
    URL sou = new URL("http://fnimphiu-lap.de.oracle.com/forms60java/Drums.wav");
    System.out.println("1");
    //Applet testapp = new Applet();
    Applet testapp = mHandler.getApplet();
    System.out.println("2");
    AudioClip clip = testapp.getAudioClip(sou);
    System.out.println("3");
    clip.play();
    System.out.println("after soundplay");
    return true;
    catch(Exception ex)
    ex.printStackTrace();
    return super.setProperty(property, value);
    Fran

  • Bean not found in WU_TEST_106.fmb

    Hi,
    I'm using Developer Suite 10g and WebUtil 10.1.2.0.
    When I load the testform WU_TEST_106.fmb in Form Builder 10.1.2.0.2 there is no problem (WEBUTIL_CANVAS shows without errors), so I think that my installation is correct.
    At runtime, however, I get error message "oracle.forms.webutil.clientinfo.GetClientInfo bean not found. WEBUTIL_CLIENTINFO.GET_SYSTEM_PROPERTY will not work".
    My frmwebutil.jar and jacob.jar files are in directory /forms/java.
    Does anyone have any suggestions?

    I'm also getting the same java console output. What is the url or form structure used to ensure that I am properly using formsweb.cfg?
    Java Console Output:
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\pholm
    Proxy Configuration: Automatic Proxy Configuration
    JAR cache enabled
    Location: C:\Documents and Settings\pholm\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    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
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://tcexpd.gsi.grci.com:8889/forms/java/frmall_jinit.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
    (repeats 7 more times)

  • Oracle.forms.webutil.ole.olefunctions bean not found

    Hi,
    I am working on Oracle application R12.
    Will CLIENT_OLE2 work in Oracle Apps 10G Envoirment?
    i followed all the steps for configuration for webutil.pll,webutil.old still i am getting below error at run time.
    "oracle.forms.webutil.ole.olefunctions bean not found"
    CLIENT_OLE2.create_obj will not work.
    I have chaged formsweb.cfg and default.env as well
    Even when i click on WEBUTIL_CANVAS in form builder.i get same error.
    Please help.
    Thanks
    Manoj
    Edited by: Manoj Rajput on Mar 27, 2012 1:16 AM

    Hi Sarah,
    Please find below java console.
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\USER1
    Proxy Configuration: Manual Configuration
    Proxy: 192.168.7.11:8888
    Proxy Overrides: pfc,<local>
    JAR cache enabled
    Location: C:\Documents and Settings\USER1\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    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
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Downloading http://pfcl-9869d08d12:8889/forms/java/frmall_jinit.jar to JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.forms.handler.UICommon.instantiate(Unknown Source)
         at oracle.forms.handler.UICommon.onCreate(Unknown Source)
         at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
         at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
         at oracle.forms.engine.Runform.startRunform(Unknown Source)
         at oracle.forms.engine.Main.createRunform(Unknown Source)
         at oracle.forms.engine.Main.start(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Thanks
    Manoj

Maybe you are looking for

  • Purchase Order Response Error : "Enter at least one item"

    Hi there, While trying to confirm a PO response in SRM 7 I am getting the following error: "Enter at least one item" But when I do a check on the PO response it says: Purchase order response - 0030000035 is correct  Any ideas what could cause this er

  • Checkboxes displayed as diamonds when running reports in APEX

    I read and implemented the steps offered in other postings on this subject and the checkboxes appear fine when I run the report locally on my PC. However, when I run the report in APEX (not through web service), the checkboxes are still not showing u

  • Local Adjustment Brush Panel Changed in LR3?

    In LR2, I used to be able to click a small rectangular button in the local adjustments brush panel to change the lay out of the effects sliders. I can't seem to find the button in LR3, and the default layout of the effects sliders is much more cumber

  • [solved] DWM and Volti tray icon problem....

    I have a problem with the tray icon of dwm. I set up Faenza dark as icon theme, and all the tray appear white (correctly). Only the volti icons appear black and  I not understand why. Everyone can help me? Thanks. Last edited by monotiz (2011-03-03 1

  • My wifi just stops working on ipad.

    To fix it i have to turn wifi off and on and it is anoying especialy when watching videos online. Any help?