blob: 2a605f51ae769c9e7edad9a1d4dcbd383ac4f3a1 (
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
|
<?xml version="1.0"?>
<jnlp spec="1.5+"
codebase="file"
href="www.redhat.com"
>
<![CDATA[
Text you want to escape goes here...
<test> random tag test </test>
]]>
<information>
<title>Sample Test</title>
<vendor>RedHat</vendor>
<offline-allowed/>
</information>
<resources>
<j2se version='1.6+' />
<jar href='myResource.jar' main='true' />
</resources>
<application-desc main-class='Test' />
</jnlp>
|