Bug in Java 1.5.2 webstart?

I noticed a lot of people have trouble using my JOGL DemoBox webstart and that puzzles me as the same webstart code always worked for my other game. So I was thinking. All worked fine before they started to roll out the Java 1.5.2 (it’s now default for www.sun.com/getjava).

Is this a bug in the new webstart or what? I never notice this as a JOGL developer I always have JOGL installed in my runtime/lib.

My webstart code pasted in below:


<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for JOGLBox Demo -->
<jnlp spec="1.0" codebase="http://www.furi.dk/java/webstart">
 
  <information>
    <title>JOGLBox Demo Viewer By Ozak</title>
    <vendor>furi.dk</vendor>
    <homepage href="http://www.furi.dk"/>
    <description>JOGLBox Demo Viewer By Ozak</description>
    <description kind="short">Common platform for viewing JOGL demos.</description>
    <offline-allowed/>  
  </information>
 
  <security>
 <all-permissions/>
  </security>
 
  <resources>
    <j2se version="1.4.2+" java-vm-args="-esa -Xnoclassgc"/>
    <property name="sun.java2d.noddraw" value="true"/> 
    <jar href="JOGLBox.jar" main="true"/>
    <extension name="jogl" href="https://jogl.dev.java.net/webstart/jogl.jnlp" />
  </resources>
 
  <application-desc main-class="JOGLBox">
  </application-desc>
</jnlp>  

Thanks in advance

Odin Jensen