filenotfound exception
I am using tomcat 5.0 and keep getting a filenotfoundexception when I type in the urlhttp://localhost:8080/Validation.jnlp (where Validation.jnlp is the jnlp file. The exception reads: java.io.FileNotFoundException: http://localhost:8080/Validation.jar
I have both the Validation.jnlp and Validation.jar in the directory $CATALINA_HOME/\webapps/ROOT directory. Obviously it finds the jnlp file.
Here is the jnlp file contents:
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SwingSet2 Demo Application -->
<jnlp
spec="6.0+"
codebase="http://localhost:8080/"
href="Validation.jnlp">
<information>
<title>Validation</title>
<vendor>CSC</vendor>
<homepage href="docs/help.html"/>
<description>Validation Application</description>
<description kind="short">A test to see if java web start works.</description>
<offline-allowed/>
<shortcut online="false">
<desktop/>
<menu/>
</shortcut>
</information>
<information os="windows">
<title> Validation on Windows</title>
<homepage href="docs/linuxhelp.html"></homepage>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+" java-vm-args="-esa -Xnoclassgc"/>
<jar href="Validation.jar"/>
</resources>
<application-desc main-class="ValidationManager"/>
</jnlp>

