FX XML extension

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 ...

Get Java 9: Building Robust Modular Applications now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.