R
Roedy Green
The DTD for JNLP has a line like this:
<!ELEMENT jnlp (information+, security?, resources*,
(application-desc | applet-desc | component-desc |
installer-desc))>
Both tools I used to translate that into XSD suggested that you had to
pick only ONE of application-desc, applet-desc, component-desc,
installer-desc. I don't understand DTD well enough to know if the
DTD says that too.
If that is so, how do you ever do an installer? Don't you need BOTH an
say as application-desc and an installer-desc?
From a pragmatic point of view, I have done just that in
http://mindprod.com/webstart/espan.html, and it works, even though it
may technically be illegal.
What are you supposed to do? have two different JNLP files?
<!ELEMENT jnlp (information+, security?, resources*,
(application-desc | applet-desc | component-desc |
installer-desc))>
Both tools I used to translate that into XSD suggested that you had to
pick only ONE of application-desc, applet-desc, component-desc,
installer-desc. I don't understand DTD well enough to know if the
DTD says that too.
If that is so, how do you ever do an installer? Don't you need BOTH an
say as application-desc and an installer-desc?
From a pragmatic point of view, I have done just that in
http://mindprod.com/webstart/espan.html, and it works, even though it
may technically be illegal.
What are you supposed to do? have two different JNLP files?