Hi David, I assume you are using the ULC Eclipse Integration plugin to generate the jnlp file.
If this is the case then you can: 1. manipulate the contents of the jnlp file in build.xml that is generated when you do export for the first time. or 2. you can change the jnlp template used by the plugin: plugins\com.canoo.ulc.eclipse.ulcintegration_3.1.0\web\application.jnlp Thanks and regards, Janak -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Thunder, David Sent: Friday, May 11, 2007 1:33 AM To: [email protected] Subject: [ULC-developer] Question on changing the generated jnlp file from eclipse with additional options... I would like to add the following features to the jnlp file, enabling the program to be started from cache for timing purposes. I think the version number will be required on the jar href statements for JNLP to run from cache, if the version numbers are in sync. Is there a way in eclipse to specify features for the jnlp creation? Has someone done this and would share their experience? See the items highlighted in yellow. <jnlp spec="1.0+" codebase="https://betagui.misd.net/isd4/" href="https://betagui.misd.net/isd4/isd4.jnlp"> <information> <title>isd4</title> <vendor>Canoo AG</vendor> <homepage href="http://www.canoo.com/ulc"/> <description>Generated by base ULC integration plugin</description> <icon href="https://betagui.misd.net/isd4/application.gif" height="48" width="48" kind="default"/> </offline-allowed> </information> <update check="timeout" policy="always"/> <resources> <java version="1.4+"/> <jar href="https://betagui.misd.net/isd4/lib/ulc-jnlp-client.jar" download="eager" main="false" version="1.4"/> <jar href="https://betagui.misd.net/isd4/lib/ulc-base-client.jar" download="eager" main="false"/> <jar href="https://betagui.misd.net/isd4/lib/ulc-base-trusted.jar" download="eager" main="false"/> <jar href="https://betagui.misd.net/isd4/lib/ulc-servlet-client.jar" download="eager" main="false"/> <jar href="https://betagui.misd.net/isd4/lib/client-extensions.jar" download="eager" main="false"/> <jar href="https://betagui.misd.net/isd4/lib/ulc-jnlp-client.jar" download="eager" main="false"/> </resources> <application-desc main-class="com.ulcjava.environment.jnlp.client.MisdJnlpLauncher"> <argument>url-string=https://betagui.misd.net/isd4/application.ulc</argument > <argument>keep-alive-interval=900</argument> <argument>log-level=WARNING</argument> </application-desc> <security> <all-permissions/> </security> </jnlp>
