Java Web Start Up
843802Dec 13 2002 — edited Dec 16 2002I have an applet using swing to build a client gui. I am experimenting replacing the plug-in with
Java Web Start. I am a little concerned with the start-up speed. At times it can spend an extremely
long time in the "Checking for latest version ..." process. We have a Federal Energy Regulatory
Commission mandate that the application be able to be launched from a browser. This is the
reason for the Applet instead of Application. I will include my .jnlp file. Any help would be greatly
appreciated.
Thanks
------------------------------------------------------------------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<!-- file escript.jnlp -->
<jnlp codebase="http://cthqs32.cngt.cng.com:8000"
href="http://cthqs32.cngt.cng.com:8000/escript.jnlp">
<information>
<title>Escript Test Port 8000</title>
<vendor>Dominion Transmission Inc.</vendor>
<icon href="logo6.jpg"/>
<description="Web Version of Escript"/>
<homepage href="http://escript.dom.com"/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.2" initial-heap-size="64m" max-heap-size="128m"/>
<property name="sun.java2d.nodraw" value="true"/>
<jar href="SEframwork.jar" main="true"/>
<jar href="SBorland.jar"/>
<jar href="SEcommon.jar"/>
<jar href="SEframecontrollers.jar"/>
<jar href="SEsecurity.jar"/>
<jar href="SEnet.jar"/>
<jar href="SEnoms.jar" />
<jar href="SEcaprel.jar" />
<jar href="SEcroffer.jar" />
<jar href="SEcrbid.jar" "/>
<jar href="SEagency.jar" />
<jar href="SEalloc.jar" />
<jar href="SEba.jar" />
<jar href="SEconfirm.jar" />
<jar href="SEcontract.jar" />
<jar href="SEcrequest.jar" />
<jar href="SEcrshared.jar" />
<jar href="SEebb.jar" />
<jar href="SEevent.jar" />
<jar href="SEflowsupply.jar" />
<jar href="SEimbal.jar" />
<jar href="SEinetsoft.jar" />
<jar href="SEmeter.jar" />
<jar href="SEnetqty.jar" />
<jar href="SEreports.jar" />
<jar href="SEshared.jar" />
<jar href="SIalloc.jar" />
<jar href="SIbilling.jar" />
<jar href="SIcommon.jar" />
<jar href="SImeter.jar" />
<jar href="SInoms.jar" />
<jar href="SIoauc.jar" />
<jar href="SIoperator.jar" />
<jar href="SIraterefund.jar" />
<jar href="SIrates.jar" />
<jar href="SIrprtdesign.jar" />
<jar href="SIsecurity.jar" />
<jar href="SItables.jar" />
<jar href="SItariffrate.jar" />
<nativelib href="Swin32printer.jar" />
</resources>
<applet-desc
documentBase="http://cthqs32.cngt.cng.com:8000"
name="DTI Escript"
main-class="com.cng.escript.framwork.Escript"
width="400"
height="300">
<param name="Server" value="cthqs32.cngt.cng.com"/>
<param name="Port" value="8000"/>
<param name="Environment" value="DEVDB"/>
</applet-desc>
</jnlp>