Hi trying to launch a java application via a jnlp file ... I have upload the jar file, jnlp file and a simple call to the jnlp file from my html page. When I click on the link to launch the java application the jnlp just displays its code! Is there something missing I need to do
anyhelp welcome , thanks
the html
<a href="LottoWeb.jnlp" type="application/x-java-jnlp-file">Launch the lottochecker </a>
the jnlp
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://www.gethin.ukcool.com" href="LottoWeb.jnlp">
<information>
<title>LottoLaunch</title>
<vendor>Me</vendor>
<description kind="short">LotteryChecker</description>
<description kind="one-line">LotteryChecker</description>
<description kind="tooltip">LotteryChecker</description>
<homepage ref="index.html"/>
<icon href="lotto.gif" kind="default" />
<offline-allowed/>
</information>
<resources>
<j2se version="1.6+" max-heap-size="512m" java-vm-args="-client -Xss128K -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=20"/>
<jar href="LottoChecker.jar"/>
</resources>
<application-desc main-class="LottoChecker"/>
</jnlp> |