Hi, I have exposed Java POJO as Web Service in Tomcat with Axis2 v1.6.1. The WS works and return something like :
<myMethodResponse xmlns="http://ws/myservice/org/xsd"> <return> ..... </return> </myMethodResponse> But I want a response like : <myMethodResponse xmlns="http://ws/myservice/org/xsd"> <result> ..... </result> </myMethodResponse> So, I want to modify the name of "return" node ? I tried to personalize the generated WSDL, but response has unchanged. Do you have a solution ? Best Regards, Rudy.