Re: Java Web Start Console closes unexpectedly / Reading in data
On Feb 2, 6:21 pm, "ChrisC" <christopher.m.coll...@gmail.com> wrote:
...
The JNLP for this application is?
...
http://www.cs.utoronto.ca/~ccollins/projects/wne/wne.jnlp
I suggest this, in place of all the
separate 'resources' elements.
<!-- resources elements are commonly split up
to provide specific resources to particular
OS's, or for localisation data. Only one
J2SE element will be parsed. 'onclick' is
not a valid attribute for any JNLP element.
-->
<resources>
<j2se
href="http://java.sun.com/products/autodl/j2se"
version="1.4+"
initial-heap-size="256m"
max-heap-size="1024m" />
<jar href="wordnetexplorer.jar"/>
<jar href="prefuse.jar"/>
<jar href="jwnl.jar"/>
<jar href="uio.jar"/>
<jar href="utilities.jar"/>
<jar href="commons-logging.jar"/>
<jar href="tests.jar"/>
</resources>
Given it is an application that requests extended
privileges, I take it that all your Jar's are signed?
Also noting that no jar element has a
main="true"
attribute defined, the main() is in
the first jar, with a manifest?
(At 13.3 Meg, I am not about to download it!)
Andrew T.