Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

jnlp_1_0.dtd file - Where is it ????

843802Dec 24 2001 — edited Jan 3 2002
Hi all !

I've build my first javaws-compliant app, and now, I try to deploy it. When JWS starts, it reports an error in my jnlp file : missing required field : <icon>href

Where could I find the DTD to validate my jnlp file ?

Or does someone has an idea ? Here my jnlp :
Thanks a lot in advance

<?xml version="1.0"?>
<!DOCTYPE jnlp PUBLIC "toto" "D:\Dev\XML\DTD\jnlp_1_0.dtd">

<jnlp
spec="1.0+"
version="1.0"
codebase="http://carolina:8100/vie"
href="http://carolina:8100/vie/JeuDeLaVie.jnlp">
<information>
<title>Jeu de la Vie n-tiers</title>
<vendor>Christophe Marchand</vendor>
<homepage href="http://carolina:8100/Vie"/>
<description kind="one-line">Version n-tiers client lourd du jeu de la vie</description>
<icon href="http://carolina:8100/vie/vie.gif"/>
</information>
<security>
<j2ee-application-client-permissions/>
</security>
<resources>
<j2se version="1.3+"/>
<jar href="http://carolina:8100/Vie/VieClient.jar" main="true" download="eager" size="62544"/>
</resources>
<application-desc main-class="com.labodev.vie.client.JeuDeLaVie"/>
</jnlp>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 31 2002
Added on Dec 24 2001
4 comments
167 views