FRM-92050 running Form with Webstart
I try using java webstart to run my forms because our users familiar with forms 6i should have the "fat-client-feeling" using forms 10g.
My environment is:
- form 10.1.2.0.2
- windows xp
- sun plugin 1.6.0_10 rc2
I build a jnlp file following the tips and hints in here and [Jans blog|http://groundside.com/blog/JanCarlin.php].
On startup I get an error FRM-92050: Failed to connect to server followed by a java stacktrace:
java.lang.NullPointerException
at oracle.forms.engine.Runform.addUserIDToServerArgs
at oracle.forms.net.HTTPNStream.processUserID
at oracle.forms.net.HTTPNStream.getInfoFromServlet
at oracle.forms.net.HTTPNStream.<init>
at oracle.forms.engine.FormsDispatcher.initConnection
at oracle.forms.engine.FormsDispatcher.init
...
My jnlp file looks like:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" href="http://localhost:8890/forms/java/form2.jnlp"
codebase="http://localhost:8890/forms/java/">
<information>
<title>winIVIS</title>
<shortcut online="true">
<desktop />
</shortcut>
</information>
<security>
<all-permissions />
</security>
<resources>
<j2se version="1.6+" />
<jar href="frmall.jar" size="" main="true" />
</resources>
<applet-desc main-class="oracle.forms.engine.Main" name="Forms" width="800" height="600">
<param name="separateFrame" value="false" />
<param name="lookAndFeel" value="generic" />
<param name="splashScreen" value="" />
<param name="background" value="blue.gif" />
<param name="colorScheme" value="blue" />
<param name="serverURL" value="/forms/lservlet?ifcfs=http://localhost:8890/forms/frmservlet?config=webutil" />
<param name="serverApp" value="default" />
<param name="imageBase" value="codebase">
<param name="serverArgs" value="form=chtest01 userid=ideadmin/bla@bla" />
</applet-desc>
</jnlp>
What do I wrong? I searched the forum but found nothing helpfull.
Any ideas welcome!!
Christian