Re: Orion and JNI

2001-08-29 Thread Biswajit Nayak
Hi ,     I think your library path is not properly set when you redeploy your application . I was facing the same problem .   Lets say you are accessing your native code in  /private1/oracle/mycode    directory . Lets say the variable name is xyz . So before starting the orion server , Explicitl

RE: Orion and JNI

2001-08-29 Thread Andre Vanha
I think its a limitation of java, it appears you can't load a native library from more than one class loader at a time. To work around it, I have a class that wraps the native library, and load the native library inside a static block as you say. I then make this class available to a higher leve