I'm trying to write a client to a .Net service using axis libs. The service itself returns XML but, despite that, is an RPC service as opposed to a messaging service.
The problem I'm encountering is deserializing the return type. I know it's XML ( I think a DOM, although it may jsut be a string) but the wsdl says that it's something like: >GetModuleMarksResponse>GetModuleMarksResult How can I retrieve this as something useful? Ideally an org.w3c.dom.Document... Paul Hunnisett
