b06 crash while b04 worked

Greetings,

I updated to build06, launched Nov. 1, 2004. Previously, I used b04.

Even running the Test.java program in How to: Getting started with JOGL, I got this error:

[b]java.lang.UnsatisfiedLinkError: CreateDummyWindow
at net.java.games.jogl.impl.windows.WGL.CreateDummyWindow(Native Method)

    at net.java.games.jogl.impl.windows.WindowsGLContextFactory$NativeWindow

Thread.run(WindowsGLContextFactory.java:266)[/b]

and it seems generated from the code:


SwingUtilities.invokeLater (
     new Runnable() {
          public void run() {
               app.setVisible(true);
          }
     }
);

or in another program, at:


testFrame.addWindowListener(new WindowAdapter() { 
     public void windowClosing(WindowEvent e) { 
          animator.stop(); 
          System.exit(0); 
     } 
}
); 

Appreciate any help.

You are probably mixing the b06 jogl.jar and the b04 jogl.dll. Search for some old jogl.dll in your library path or java/bin directory and try to replace it.

YES!

That was it.
Thanks for your assistance!

As said in Wizard of Oz:
If I only had a Brain