VB6 Soap request xml not escaping characters

lxlzeuslxl

New Member
I am trying to parse XML in VB6 that is returned from a SOAP request.\[code\]Dim oSoap As SoapClient30Dim oXML As DOMDocumentDim sXML As StringSet oXML = New DOMDocumentoXML.async = FalseoXML.validateOnParse = FalseoSoap.MSSoapInit urloSoap.ConnectorProperty("Timeout") = 600000sXML = oSoap.function(parameter)\[/code\]sXML does not contain the escaped quotations that the XML should of contained?Any ideas?Thanks
 
Back
Top