/home/wpollock1/public_html/AJava/webstart/Demo.jnlp

<?xml version="1.0" encoding="UTF-8" ?>
<!-- Basic jnlp file.
  For details see http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/
  and http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html
-->
<jnlp spec="6.0+" codebase="https://wpollock.com/AJava/webstart/" href="Demo.jnlp"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:noNamespaceSchemaLocation="jnlp-schema.xsd">
  <information>
    <title>WebStart Demo</title>
    <vendor>Wayne Pollock, Tampa Florida USA</vendor>
    <homepage href="https://wpollock.com/Cop2805C.htm" />
    <description>A simple WebStart demo application</description>
    <!-- icon href="Demo_icon32.png" width="32" height="32" /-->
    <!-- icon href="Demo_icon64.png" width="64" height="64" /-->
    <offline-allowed />
    <shortcut>
      <desktop />
    </shortcut>
  </information>
  <security>
     <all-permissions/>
  </security>
  <update check="background" policy="prompt-update" />
  <resources>
     <java version="1.6.0+" />
     <jar href="https://wpollock.com/AJava/webstart/WebStartDemo.jar" />
  </resources>
  <application-desc main-class="webstart.Demo" name="WebStart Demo" />
</jnlp>