Hi,
I've got en NoClassDefFoundError when I'm calling a method of a SOAP service which is deployed on my Tomcat Server. To start TOMCAT, I use these code, which is launched in my JVM : String[] args = new String[]{"start"}; org.apache.tomcat.startup.Main.main(args); The version of Tomcat is 3.3a. The error is : <?xml version='1.0' encoding='UTF-8'?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema"> <SOAP-ENV:Body> <SOAP-ENV:Fault xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <faultcode>SOAP-ENV:Server.BadTargetObjectURI</faultcode> <faultstring>Unable to resolve target object: lib123.soap.sms.SmsDriverSOAP</faultstring> <faultactor>/soap/servlet/messagerouter/</faultactor> <detail> <stackTrace>java.lang.ClassNotFoundException: lib123.soap.sms.SmsDriverSOAP I don't understand why the class lib123.soap.sms.SmsDriverSOAP can't be found since is in my JVM's classpath ? Thanks