Hi.
I've got my game to read all resource files from jars. This works fine in eclipse where i added the jar that contains the resources to the build path of my project.
I cant however get it to read the resources from the Jar in java web start. Im guessing there might be something wrong in my JNLP file? (ive never done any of this before btw) Please take a look

and if its not the JNLP file what else could it possibly be? seeing as it reads frim the Jar just fine when i run it localy.
the source for lwjgl is also compiled into SpheresOfMadness.jar.
<!-- test jnlp file -->
<jnlp
spec="1.0+"
codebase="
http://www.distantmelody.net/temp/">
<information>
<title>Spheres of Madness</title>
<vendor>DMStudio</vendor>
<homepage href="
http://www.distantmelody.net/"/>
<description>Spheres of Madness</description>
<description kind="short">Spheres of Madness</description>
<icon kind="splash" href="logo.png" />
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+"/>
<jar href="SpheresOfMadness.jar" main="true"/>
<jar href="data.jar"/>
</resources>
<resources os="Windows">
<j2se version="1.6+"/>
<nativelib href="native-windows.jar"/>
</resources>
<application-desc main-class="spheres_of_madness.SpheresOfMadness">
</application-desc>
</jnlp>