I am trying to analyse the output of httprequest which is formatted as XML. I use MSXML2.DOMDocument to load the response as XML but I receive this error:
You are using the load method, which
Loads an XML document from the specified location.
However you want to load the XML as a string into the object, so use loadXML, which
Loads an XML document using the supplied string.