I got a module, described like this:
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.0" name="com.mymodule">
<resources>
<resource-root path="myFirstJar.jar" />
<resource-root path="mySecondJar.jar" />
<resource-root path="Lib/linux" />
</resources>
</module>
In my jboss-deployment-structure.xml:
<jboss-deployment-structure><deployment>
<dependencies>
<module name="com.mymodule" />
</dependencies>
</deployment></jboss-deployment-structure>
The jar files are found, but one of them tries to access an .so library. That library exist in the "Lib/linux" folder. But JBoss will look into %JBOSS_HOME%/bin/mylib.so . I tried to follow the naming convention (see jboss.org), getting the same error:
Caused by: java.lang.UnsatisfiedLinkError: Can't load library: /usr/local/jboss/jboss-as-7.1.1.Final/bin/mylib.so
What am I doing wrong?
Edit If I put the .so file into my JBoss/bin folder, then the JVM crash on a JNI call.
Answer your own questionat the bottom of page in case none of the answers is/are relevant. Regards – Mukul Goel Nov 5 '12 at 11:07