I have deployed a service but got a no such operation error (so I assume that the server finds the service). I actually allow all the methods as in dd specified:
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="symcor:RequestorService" provider="java:RPC"> <parameter name="className" value="com.symcor.od.server.soap.SoapFacade"/> <parameter name="allowedMethods" value="*"/> </service> </deployment> but when I call any of the methods, it reports "no such operation" error. How can I kown what methods are available or not? Thanks a lot.
