Elements of the JNLP File
In my last blog I attempted to run an applet using the following jnlp file:: <?xml version="1.0" encoding="utf-8"?> <!-- JNLP File for ActiveMath --> <jnlp spec="1.0+" codebase="http://202.65.70.207/myweb/" href="AMJ002.jnlp"> <information> <title>Active Math Java Test</title> <vendor>Softway Interactive Education</vendor> <description>Active Math Java Test</description> <homepage href="http://202.65.70.207/myweb/index.htm"/> <description kind="short">ClickMeApp uses 1 custom class plus 1 standard one</description> <offline-allowed/>> </information> <resources> <jar href="ActiveMathJA002.jar"/> <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/> </resources> <application-desc main-class="AMJFormA002"/> </jnlp> The er...