Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Last active November 7, 2024 02:34
Show Gist options
  • Save HashRaygoza/9cc742c4883fc88505e17244e380ed75 to your computer and use it in GitHub Desktop.
Save HashRaygoza/9cc742c4883fc88505e17244e380ed75 to your computer and use it in GitHub Desktop.
Ejemplo de un archivo JNLP
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://192.168.0.17:8080/Test/" href="Test.jnlp">
<information>
<title>Prueba Java WebStart</title>
<vendor>HashSoftware</vendor>
<homepage href="http://192.168.0.17:8080/Test/" />
<description>Testing Testing</description>
</information>
<security>
<all-permissions />
</security>
<resources>
<j2se version="1.6+" />
<jar href="Test-1.0.jar" />
</resources>
<application-desc main-class="hashblog.test.Ventana" />
</jnlp>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment