Hello,
I am starting to use getdown in order to ship the save JRE to all clients, but I would like to avoid platform installers.
Is there a way to call the GetdownApp from JNLP without a getdown.txt file? I have tried the following JNLP descriptor:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+"
codebase="
http://localhost/"
href="go.jnlp">
<information>
<title>My App</title>
<vendor>Company, Inc.</vendor>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<update check="timeout" policy="prompt-update"/>
<resources>
<property name="jnlp.appbase_domain" value="
http://localhost/" />
<property name="jnlp.appdir" value="." />
<property name="jnlp.appid" value="My App" />
<j2se version="1.5+"/>
<jar href="getdown-latest.jar" main="true"/>
</resources>
<application-desc main-class="com.threerings.getdown.launcher.GetdownApp"/>
</jnlp>
This failed to bring up the getdown UI and no JNLP error occurred.
Thanks!
Tony Bargnesi