java.lang.UnsatisfiedLinkError and java.lang.NoClassDefFoundError
Hi!
I'm new in java. Im debugging an application that exports data to a Word Document. The application runs successfully on one development server, however it gives the following error on the production server.
java.lang.UnsatisfiedLinkError: /adb/apps/pkg/java/1.4.2_03/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1560)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1477)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:834)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
....
when i refresh the page the error message changes to:
java.lang.NoClassDefFoundError
at com.lowagie.text.rtf.RtfWriter.initDefaults(Unknown Source)
at com.lowagie.text.rtf.RtfWriter.(Unknown Source)
at com.lowagie.text.rtf.RtfWriter.getInstance(Unknown Source)
the application uses iText 1.00 for the exporting.
Thank you!

