Arie,
The four valid signatures for message-style service methods are:
public Element[] method(Element [] bodies) ;
public SOAPBodyElement [] method (SOAPBodyElement [] bodies) ;
public Document method(Document body) ;
public void method(SOAPEnvelope req, SOAPEnvelope resp) ;
Check Axis User's
>From Axis User Guide:
--
There are four valid signatures for your message-style service methods:
public Element [] method(Element [] bodies);
public SOAPBodyElement [] method (SOAPBodyElement [] bodies);
public Document method(Document body);
public void method(SOAPEnvelope r