JNLP Not Reaching Stage 2

The public knowledge pool and discussion forum of the OWS community. Do not post confidential information here!
cleseman
Posts: 1
Joined: 14 Nov 2025, 15:39

JNLP Not Reaching Stage 2

Post by cleseman »

The JNLP launches Oracle Forms Services. I will see the form window open, then close when finished loading. I cannot see any obvious errors, and I'm unsure of the limitations of OpenWebStart.
2025-11-14_08_37_02.202-ows-stage1.log
(52.77 KiB) Downloaded 23 times

Janak Mulani
Posts: 1088
Joined: 24 Mar 2020, 13:37

Re: JNLP Not Reaching Stage 2

Post by Janak Mulani »

Code: Select all

   <applet-desc
    name="Oracle Forms"
    main-class="oracle.forms.engine.Main"
In the Jnlp you have specified a Java Applet:

OWS does not support applets. It supports Java applications specified with <application> tag in the Jnlp file.

You will need to convert you applet to a Java Application for example the main window should be migrated from Applet or JApplet to Frame or JFrame.

Post Reply