summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/wstest/wstest.jnlp
blob: 703ea3e3d78aae20e7dcd3b997a118081b88ef8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>

<!-- JNLP File fuer HJP3 WebStart Demo-Applikation -->
<jnlp codebase="http://localhost:7777/" href="wstest.jnlp">

<information>
  <title>HJP3 WebStart Demo Application</title>
  <vendor>Guido Krueger</vendor>
  <homepage href="http://www.javabuch.de"/>
  <description>HJP3 WebStart Demo Application</description>
  <icon href="wstest.gif"/>
  <offline-allowed/>
</information>

<information locale="de">
  <description>HJP3 WebStart Demo-Applikation</description>
  <offline-allowed/>
</information>

<security>
  <!-- <all-permissions/> -->
</security>

<resources>
  <j2se version="1.3+"/>
  <jar href="wstest.jar"/>
</resources>

<application-desc main-class="Listing3813"/>

</jnlp>