Could not initialize class com.pdftron.pdf.PDFNet

After a few test i decide to deploy a servlet to convert pdf to xod.
an Easy servlet, read from a byteArray and response a temp file to show the xod.
I try this servlet using Xampp and all work well but when i try to deploy the same servlet on a Tomcat(Linux) i recieved this response:

java.lang.NoClassDefFoundError: Could not initialize class com.pdftron.pdf.PDFNet
	converter.doGet(converter.java:50)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:635)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:742)
	org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

The Line is exactly the Line where i initialize the lib .

PDFNet.initialize();

For Info i've already read this post:
https://groups.google.com/forum/#!topic/pdfnet-sdk/e-izERuN3Ic

and i've already add libPDFNetC.so with PDFNet.jar under /WEB-INF/lib changed from .dll and .lib for windows use.
Can Someone Help?





For linux and java you need PDFNet.jar and libPDFNetC.so (note there might be a symlink to libPDFNetC.so.6.x. check the file size if in doubt).

Our java samples runtest.sh file show the settings for Java.

If you refer to the documentation for your server framework, you should be able to find out how to use native code via JNI and Java.