Hello everyone, I am looking for some help on Axis. I've created a wsdd file that auto-starts my webservice:
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="Calculateur" provider="java:RPC"> <parameter name="className" value="vub.starlab.portal.pages.webservices.Calculator"/> <parameter name="allowedMethods" value="*"/> </service> </deployment> When I access the address for the service, it says that there is an Axis service present (woohoo!), but when I go to the AxisServlet and ask for the WSDL it says it cannot generate it (not so woohoo!). So in the next try I added a wsdlFile parameter to the wsdd in which I placed a java2WSDL created wsdl file (for the Calculator class). Still Axis tells me the service is present, but that it cannot generate the wsdl file. However on the url .../services/Calculateur it says there is a web service, but on the wsdl url .../services/Calculateur?wsdl it says it cannot generate a wsdl file, because there is no web service at the address. Am I doing something wrong? Thanks in advance for all the assistance! Ciao, Stijn
