I've generated a jnlp file with Netbeans. By double clicking it, I get the following error dialog:

Double clicking the jar works, so no problem there but when double clicking the jnlp file, the antecedent error appears.
The launch.jnlp file looks this:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp href="launch.jnlp" spec="1.0+">
<information>
<title>...</title>
<vendor>....</vendor>
<homepage href=""/>
<description>...</description>
<description kind="short">....</description>
<icon href="icon.png" kind="default"/>
<offline-allowed/>
</information>
<update check="background"/>
<resources>
<j2se version="1.6+"/>
<jar href="File.jar" main="true"/>
<jar href="lib/itextpdf-5.3.3.jar"/>
</resources>
<application-desc main-class="right.path.to.my.main.class.here">
</application-desc>
</jnlp>
I put the File.jar in the same directory as the jnlp file (all the others are there too).
<icon href="...">is that icon also in the same path?