Hi, I am calling a webservice method using MSXML2::IXMLHttpRequest (msxml3.dll). I am sending a post request using the send method and then getting the response using "get_responseText". But this response is having data like ">", "<" etc. whereas it should return angle brackets in place of ">" and "<". When using MS SOAP the webservice is sending correct data. I am very new to this MSXML parser so I am not able get reason why I am getting this result.It would be great if someone could help me on this issue.
This is the code that I am using to call the webservice: header file: #import "msxml3.dll" named_guids //For connecting the webservice using namespace MSXML2;
responseText is the plain text of the received response. If you want an XML document then you might want to access responseXML instead. MVP XML
My blog
responseText is the plain text of the received response. If you want an XML document then you might want to access responseXML instead. MVP XML
My blog