Exception by running a java3d application

Hi,
Is anybody there who knows howe to eliminate this runtime error on winXP:

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x5F179E5A
Function=[Unknown.]
Library=C:\WINDOWS\System32\OPENGL32.dll

General answer:
That’s normally happening when you access invalid memory locations, that is memory your process doesn’t own, esp. which is in a protected area like NULL.
Try to pin-point which exact function crashes.
Analyze all pointer parameters you send to gl-functions for NULL or wrong address calculation.