Subject NoClassDefFoundError
Author Marco Ferretti
Hi there all !
I have an applet (ment to run in an intranet ) that connects to a fb server via JayBird.
If I run the applet locally everything works fine, but if I try to run it from the server (SuSe 8.0, Apache 1.3x) I get a java.lang.NoClassDefFoundError: javax/resource/ResourceException
 at java.lang.Class.forName0(Native Method)
 at java.lang.Class.forName(Class.java:140)
...
doing
...
String clName = "org.firebirdsql.jdbc.FBDriver";
...
Class.ForName(clName);
I call the applet from an html page :
<applet ARCHIVE="./lib/JGo.jar,./lib/JGoLayout.jar,./lib/JGoSVG.jar,./lib/firebirdsql.jar,./lib/jaas.jar" CODE=sid.modeler.Sid.class WIDTH=900 HEIGHT=500>
I have included jaas.jar since I wasn't sure about all of the clients ...
Note that all other libraries work fine (I can use all the objects got from JGo*.jar in the applet).
Any idea ?
TIA