EDIT: Fixed! Feel free to try the JNLP file
I was trying to find an answer to this but couldn’t :’(
My jogl app launches fine when run locally, but when I try to run it through webstart the Frame appears but nothing is drawn on the canvas
jnlp source:
<?xml version="1.0" encoding="utf-8"?>
<!-- Test for Checkers 3D -->
<jnlp
spec="1.0+"
codebase="http://www.jimrichards.com/e/checkers"
href="Checkers3D.jnlp">
<information>
<title>Checkers 3D</title>
<vendor>Eric Richards</vendor>
<description>A simple 2-player 3D checkers game</description>
<description kind="short">A simple 2-player 3D checkers game</description>
</information>
<resources>
<j2se href="http://java.sun.com/products/autodl/j2se" version="1.5+"/>
<jar href="Checkers3D.jar"/>
<extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp" />
</resources>
<application-desc main-class="CheckersMain"/>
</jnlp>