When using the JNLP, you create a JNLP file. Here is an example:
<?xml version="1.0" encoding="UTF-8"?> <jnlp spec="1.0+" codebase="" href=""> <information> <title>Sample/title> <vendor>The Sample Vendor</vendor> <icon href="sample-icon.jpg"/> <offline-allowed/> </information> <resources> <!-- Application Resources --> <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/> <jar href="Sample-Set.jar" main="true" /> </resources> <application-desc name="Sample Application" main-class="com.vendor.SampleApplication" width="800" height="500"> <argument>Arg1</argument> <argument>Arg2</argument> <argument>Arg3</argument> </application-desc> <update check="background"/> </jnlp>
Two changes have been made to the ...