I'm trying to deploy a web service on Tomcat using the instructions
on
http://www.onjava.com/pub/a/onjava/2002/06/05/axis.html?page=2
The following command gives me the wsdl file (all on one line)
java org.apache.axis.wsdl.Java2WSDL
-o connectToMur.wsdl
-lhttp://150.132.6.212:8080/axis/services/connectToMur
-n urn:connectToMur -p"connectToMur"
urn:connectToMur connectToMur.ConnectToMur
But the following command (all on one line)
java org.apache.axis.wsdl.WSDL2Java
-o . -d Session
-s -p connectToMur connectToMur.wsdl
does not generate the SoapBindingSkeleton.java file
I've also tried the command
java org.apache.axis.wsdl.WSDL2Java
--server-side connectToMur.wsdl
with the same result.
Does someone know how to solve this problem?
Regards,
Emma
