Created
March 20, 2014 18:54
-
-
Save saltlakeryan/9671168 to your computer and use it in GitHub Desktop.
Hello world jnlp file for java web start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<jnlp spec="1.0+" codebase="http://localhost:8000/" href="Hello.jnlp"> | |
<information> | |
<title>Jnlp Testing</title> | |
<vendor>Example</vendor> | |
<homepage href="http://localhost:8000/" /> | |
<description>Hello World JNLP</description> | |
</information> | |
<security> | |
<all-permissions/> | |
</security> | |
<resources> | |
<j2se version="1.6+" /> | |
<jar href="hello.jar" /> | |
</resources> | |
<application-desc main-class="Hello" /> | |
</jnlp> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment