On 6/9/05, Johan Kumps <[EMAIL PROTECTED]> wrote: > Hi all, > > I would like to deploy a webservice using Axis 1.2 with a XML-string as input > parameter and a XML-string as return value. > > Can you point me in the right direction? Code sample? > > Thanks in advance, > > Kind regards, > > Johan Kumps > > >
I would do something like: 1) describe my service to take string input and return string response. 2) Use any tool which provides xml-java binding (like castor or JAXB) and generate request, response java classes from xsds. 3) Use the generated classes to marshal/unmarshal request/response java objects to xml. Deepesh
