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 32 33 34 35 36 37 38 39 40 41 42
|
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://localhost/jdic" href="SampleAppletBrowser.jnlp">
<information>
<title>Simple Browser Applet</title>
<vendor>uta</vendor>
<homepage href="http://localhost/jdic/SampleAppletBrowser.html"/>
<description>JDIC Example Simple Browser Applet</description>
<description kind="short">Simple Browser Applet</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
<jar href="SimpleAppletBrowser.jar" download="eager"/>
<jar href="lib/jdic.jar" download="eager"/>
</resources>
<resources os="Windows">
<jar href="lib/windows/jdic_stub.jar" download="eager"/>
<nativelib href="lib/windows/x86/jdic_native.jar" download="eager"/>
</resources>
<resources os="Linux">
<jar href="lib/linux/jdic_stub.jar" download="eager"/>
<nativelib href="lib/linux/x86/jdic_native.jar" download="eager"/>
</resources>
<resources os="SunOS">
<jar href="lib/sunos/jdic_stub.jar" download="eager"/>
</resources>
<resources os="SunOS" arch="i386">
<nativelib href="lib/sunos/x86/jdic_native.jar" download="eager"/>
</resources>
<resources os="SunOS" arch="sparc">
<nativelib href="lib/sunos/sparc/jdic_native.jar" download="eager"/>
</resources>
<applet-desc main-class="SimpleAppletBrowser" WIDTH="666" HEIGHT="999">
</applet-desc>
</jnlp>
|