Hi ! I've got a problem with Axis 1.1 and any (makes no difference, if its 1.4.29 or 5.x) Tomcat Version. :-(
Ive made a wsdd file for deployment. the syntax of that file is correct, i am pretty sure, because i took an example of a webservices book and it has only 5 lines. i placed my class in the correct path (as it was described in the book) and i started the deployment by entering java org.apache.axis.client.AdminClient testdeploy.wsdd the adminclient told me, that the file would be processed but it stopped immediately after that and the adminclient throwed a "java.lang.exception" the complete 'dialog' was : java org.apache.axis.client.AdminClient testdeploy.wsdd Processing file testdeploy.wsdd Exception: java.lang.Exception: FIXME I'm not sure, but the Tomcat Installation seems to be working fine except of this. I guess, he is not finding the class. I have set up the classpath like it was described in the Axis Installation Docs. But maybe there is anything else be absent in a (class?)path,too ? Regards, Arne ----- Content of testdeploy ----- <deployment xmlns="http://xml.apache.org/axis/wsdd" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="TestdeploymentService" provider="java:RPC"> <parameter name="classname" value="kapitel6.test.TestDeployment"/> <parameter name="allowedMethods" value="*"/> </service> </deployment> ----- Location of TestDeployment.class ----- C:\Tomcat\webapps\axis\WEB-INF\classes\kapitel6\test\TestDeployment.class