Why does Flex change the XML while passing it to a web service?
Hi All,
Is it natural for Flex to replace all <, >, and & with <, > and & , respectively, in an XML before passing it as parameter to a web service call? ![]()
I invoke a web service through the mx:WebService component and pass a simple XML as parameter
<b>bhaskar</b>
But, the service receives this as the request parameter
<b>bhaskar</b>
Note: I have verified the request using BlaseDS and have also checked the server logs for the request the service received.
So, is there no way Flex can send the original XML? ![]()
Note: I read somewhere that to fix some issue they used the approach of replacing all <, >, and & with <, > and & , respectively.
Is there a way out (other than converting the XML received at the server side back to original format, before operating on it)? ![]()
