Because some reserved word issue with Flex2 I need modify the axis2 response
message's style.

----------------------------------------------Original
Response-----------------------------------------------------
<ns:getWeatherResponse
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:ns="http://service.pojo.sample/xsd";>
<ns:return>
        <forecast xmlns="http://data.pojo.sample/xsd";>windy</forecast>
        <howMuchRain xmlns="http://data.pojo.sample/xsd";>10.0</howMuchRain>
        <rain xmlns="http://data.pojo.sample/xsd";>true</rain>
        <temperature xmlns="http://data.pojo.sample/xsd";>10.0</temperature>
</ns:return>
</ns:getWeatherResponse>

----------------------------------------------I need to
achieve------------------------------------------------------
<ns:getWeatherResponse
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:ns="http://service.pojo.sample/xsd";>
<ns:returnResp>
        <forecast xmlns="http://data.pojo.sample/xsd";>windy</forecast>
        <howMuchRain xmlns="http://data.pojo.sample/xsd";>10.0</howMuchRain>
        <rain xmlns="http://data.pojo.sample/xsd";>true</rain>
        <temperature xmlns="http://data.pojo.sample/xsd";>10.0</temperature>
</ns:returnResp>
</ns:getWeatherResponse> 
-------------------------------------------------------------------------------------------------------------------------
Change <ns:return> to <ns:returnResp>
Is this possible?
-- 
View this message in context: 
http://www.nabble.com/Is-this-possible--%28Axis2%2BFlex2%29-tf3371444.html#a9381529
Sent from the Axis - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to