Page 1 of 1
JNLP Not Reaching Stage 2
Posted: 20 Nov 2025, 14:32
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.
Re: JNLP Not Reaching Stage 2
Posted: 20 Nov 2025, 17:22
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.