Beginner with some problems
Hey guys, so I have a signed executable jar file that works fine when its in the same directory as the directory that holds the images. If I try to run it outside of this directory, the images don't show up. I think this might be a security issue but I'm not sure.
I also tried to deploy it as JNLP. When I do this it asks if I want to accept the security certificate. I say yes and then nothing happens.
Any suggestions for either of these problems would be greatly appreciated. If it helps, here is what I am using as my JNLP file:
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP Filefor SwingSet2 Demo Application -->
<jnlp
spec="1.5+"
codebase="http://www.mysite.com
href="cluster.jnlp">
<information>
<title>Hierarchical Clustering Tool</title>
<vendor>My Name</vendor>
<homepage href=""/>
<description>Graphical toolfor the hierarchical clustering of gene expression data</description>
<icon href="dna.gif"/>
<offline-allowed/>
</information>
<security>
<j2ee-application-client-permissions/>
</security>
<resources>
<j2se version="1.4.2+" java-vm-args="-esa -Xnoclassgc"/>
<jar href="cluster.jar" main="true"/>
</resources>
<application-desc main-class="MainFrame"/>
</jnlp>

