I've written a native method to access port. I am able to run the JNI in a simple Java project. However, when I try to run it in a web project, I'm getting an exception like this:

Exception in thread "main" java.lang.UnsatisfiedLinkError:

link|improve this question
where you have kept your library ? – Jigar Joshi Feb 23 '11 at 9:47
Out of curiosity, what are you building? The idea of using a native interface to control a port over the web seems pretty cool. – templatetypedef Feb 23 '11 at 10:14
feedback

1 Answer

Put your library into one of the following places:

  • WEB-INF/lib
  • your app server's lib directory
  • the JVM lib

I hope that it will work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.