JOGL and JWS on Mac OS X

Hi all,
this is the first time I write here.
I’m working on Java Web Start “porting” of an application uses JOGL but I have a problem when a GLCanvas (or GLJPanel) is instantiated.

This is the error: http://img120.imageshack.us/img120/3015/picture2pk8.jpg and this is my jnlp file:


 
<jnlp spec="1.0+" codebase="file:///Users/alessandro/NetBeansProjects/Aerocut-next-trunk/dist" href="launch.jnlp">
    <information>
        <title>Titolo...</title>
        <vendor>Vendor...</vendor>
   </information>
   <resources>
        <java version="1.5+"/>
        <jar href="Aerocut-next-trunk.jar"/>   
        <extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp" />
   </resources>
   <application-desc main-class="Aerocut.Loader"/>
   
   <security>
       <all-permissions/>
   </security>
   
</jnlp>
 

My jars are correctly certificated.

How can I resolve?
Thanks in advance


Alessandro

It may sound counter-intuitive at the first sight, but since JNLP interpretation is very sensitive: you could try placing the tag between and instead of having it at the end…

None :’(

And IF ordering is the problem, put after the tag.

I think it’s extremely unlikely that Sun’s Webstart is that poorly implemented though…

Thanks for your answers but the problem remains :’(