problem with JWS: page not found
I'm not exactly new to Java but I'm new to JWS and I don't know where else to post this (so please move it if you see fit).
If you go to:
Hello World GUI
you'll see I've got a java application setup and ready to be downloaded. The problem occurs when you click on it. It says "The page cannot be found". It looks for helloworldgui.jnlp and for some reason can't find it.
The wwwroot/JWS folder consist of the following files:
helloworldgui.html
helloworldgui.jnlp
helloworldJFrame.jar
classes\
source\
My jnlp file looks like this:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://www.shahspace.com/JWS/" href="http://www.shahspace.com/JWS/helloworldgui.jnlp">
<information>
<title>Hello World GUI</title>
<vendor>Gibran Shah</vendor>
</information>
<resources>
<jar href="HelloWorldJFrame.jar"/>
</resources>
<application-desc main-class="classes.HelloWorldJFrame></application-desc>
</jnlp>
I know it works on my desktop as I've tested it. It's only when I upload it to my server and put it under my domain that I get this problem.
Any suggestions will be greatly appreciated.