Running on my server
843802Oct 3 2004 — edited Oct 4 2004Ok so I am making a chat program and all is well except its hard to distribute the files out to every one (all like 5 people :-P) when there is an update. JAWS seems to do this fine. I made a jnlp file and put stuff where its suposed to be and all seems well. But when I make a link on my page it just shows all the code in the jnlp file.
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for ChatClientDM -->
<jnlp
spec="1.0+"
codebase="http://192.168.0.2/ChatClientDM"
href="ChatClientDM.jnlp">
<information>
<title>ChatClientDM</title>
<vendor>DuckManis1.no-ip.com</vendor>
<homepage href="http://duckmanis1.no-ip.com"/>
<description>ChatClientDM</description>
<description kind="short">A chat client</description>
<offline-allowed/>
</information>
<resources>
<j2se version="1.4+"/>
<jar href="ChatClientDM.jar"/>
</resources>
<application-desc main-class="Application"/>
</jnlp>
Ive used a few programs that use Java Web Start and it starts the program and yay.
Is there something that is supposed to be installed on the webserver or something that is supposed to be set?