Hi all I�m trying to create a ws from a WSDL.
I�ve used wsdl2java to generate client and server sources for my service. My deploy.wsdd: <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <service name="windimnet_opc" style="document" > <parameter name="className" value="org.opcfoundation.webservices.XMLDA._1_0.ServiceSkeleton"/> <parameter name="allowedMethods" value="*"/> <parameter name="scope" value="Application"/> </service> </deployment> On client side i use the generated Stub to communicate with the server. The problem is that i get the following server side exception: org.xml.sax.SAXException: Deserializing parameter 'GetStatus': could not find deserializer for type {http://opcfoundation.org/webservices/XMLDA/1.0/}>GetStatus i even tried to add a custom typemapping for the parameters/return type.. but it still does not work :( thanks for any help, mike
