Posts Tagged ‘dll’

How to start a Java application with web start

Friday, December 14th, 2007

These are some notes I made while trying to get a Java OpenAL (JOAL) application start from a web page. The tutorial applies to Java 1.4.2, but it probably works similarly in newer versions.

There are some things you need to master:

  1. Generate a manifest that indicates the main class
  2. Package everything in jar file(s)
  3. Generate your keys using java keytool
  4. Sign the jar file(s)
  5. Make the JNLP XML file
  6. Put everything on a web server

(more…)