Skip to content

Instantly share code, notes, and snippets.

@saltlakeryan
Created March 20, 2014 18:54
Show Gist options
  • Save saltlakeryan/9671168 to your computer and use it in GitHub Desktop.
Save saltlakeryan/9671168 to your computer and use it in GitHub Desktop.
Hello world jnlp file for java web start
<?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