Re: UnsatisfiedLinkErr in JNI

1999-07-07 Thread jools enticknap
Hi I use JNI a great in my current work, and normally find that when I get this exception it is a typo. Try running javap -s and make sure that signatures match up. Regards --Jools >Hi, > >I got an UnsatisfiedLinkErr exception in calling a second native method >from Java (not a nested

Re: UnsatisfiedLinkErr in JNI

1999-07-06 Thread Matthias Pfisterer
Sorry, your error description is not very clear. Perhaps it's best to include code the next time. But a guess what can be the problem: JNI requires additional characters in the signature if methods are overloaded. Perhaps you have such overloaded methods, but did not use the modified signature in

UnsatisfiedLinkErr in JNI

1999-07-06 Thread Yuwin Fei
Hi, I got an UnsatisfiedLinkErr exception in calling a second native method from Java (not a nested JNI call). I checked signature of the method and made sure they're consistent in both sides. It still happens. Anyone know what this error really means? Is there a limitation as to how many nati