I\'m developing a web service which is using native code via JNI.
Could I pack those dll\'s into my war?
I\'ve tired to manage them independently...
PS I\'m usin
@carlspring: You'll have to be lucky to have write access to any directory in java.library.path. (i.e. Program Files\Java etc) A better practice might be to unpack the dll's to a temp directory and add this directory to java.library.path at runtime. This is possible: http://fahdshariff.blogspot.nl/2011/08/changing-java-library-path-at-runtime.html