Demo.jnlp

Download Demo.jnlp

 1: <?xml version="1.0" encoding="UTF-8" ?>
 2: <!-- Basic jnlp file.
 3:   For details see http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/
 4:   and http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/developersguide/syntax.html
 5: -->
 6: <jnlp spec="6.0+" codebase="https://wpollock.com/AJava/webstart/" href="Demo.jnlp"
 7:    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 8:    xsi:noNamespaceSchemaLocation="jnlp-schema.xsd">
 9:   <information>
10:     <title>WebStart Demo</title>
11:     <vendor>Wayne Pollock, Tampa Florida USA</vendor>
12:     <homepage href="https://wpollock.com/Cop2805C.htm" />
13:     <description>A simple WebStart demo application</description>
14:     <!-- icon href="Demo_icon32.png" width="32" height="32" /-->
15:     <!-- icon href="Demo_icon64.png" width="64" height="64" /-->
16:     <offline-allowed />
17:     <shortcut>
18:       <desktop />
19:     </shortcut>
20:   </information>
21:   <security>
22:      <all-permissions/>
23:   </security>
24:   <update check="background" policy="prompt-update" />
25:   <resources>
26:      <java version="1.6.0+" />
27:      <jar href="https://wpollock.com/AJava/webstart/WebStartDemo.jar" />
28:   </resources>
29:   <application-desc main-class="webstart.Demo" name="WebStart Demo" />
30: </jnlp>