Hi Dhanush,

I am trying to pass a DOM document to a WebService which is using
"Message" Style of Service. But looking into the Axis Use Guide I
could find that the methods which I write should be of any of these
forms:
public Element [] method(Element [] bodies);
public SOAPBodyElement [] method (SOAPBodyElement [] bodies);
public Document method(Document body);
public void method(SOAPEnvelope req, SOAPEnvelope resp);


    Can some exlpain why can there be only these 4 types of valid
    signatures? My Web Service needs to receive a document object and
    should return a String.

Why not use the third form and return the status code in a well-formed Document?

Reply via email to