Hello, I'm trying to deploy a simple test class, but I can't seem to get it to work. I can deploy example3 from the user guide using deploy.wsdd with any problems, but I can't deploy any of my own classes.
Currently, when I got to http://localhost:8080/axis/servlet/AxisServlet to view the deployed services, I get a blank page. Okay is not completely blank here is all it contains: "And now... Some Services" I have in the past gotten class not found errors, but I seem to have corrected those... :-) Does anyone have suggestion on what could cause this? I've pasted in my deploy.wsdd file and the path to the class. Thanks, Adhamh # pwd /usr/local/jakarta-tomcat-4.1.24/webapps/axis/WEB-INF/classes/test # cd /usr/local/jakarta-tomcat-4.1.24/webapps/axis/WEB-INF/classes/test # ls -al total 8 drwxr-xr-x 4 root wheel 136 Aug 5 13:46 . drwxr-xr-x 4 root wheel 136 Aug 5 13:44 .. -rw-r--r-- 1 root wheel 472 Aug 5 13:51 SoapTest.class -rw-r--r-- 1 root wheel 125 Aug 5 13:51 SoapTest.java <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="SoapTest" provider="java:RPC"> <parameter name="className" value="test.SoapTest"/> <parameter name="allowedMethods" value="*"/> </service> </deployment>