Hello,
As the tittle says i am trying to get access to the responseXML of a url.
ConsoleWrite returns nothing.
As i read at the msdn site to get access to the responseXML i have to set the responseType = "msxml-document" but i got an error because responseType doesn't seem to return nothing at all.
Anyone knows how to get responseXML of url?
As the tittle says i am trying to get access to the responseXML of a url.
ConsoleWrite returns nothing.
As i read at the msdn site to get access to the responseXML i have to set the responseType = "msxml-document" but i got an error because responseType doesn't seem to return nothing at all.
Anyone knows how to get responseXML of url?
[ autoit ]
$xml = ObjCreate("Microsoft.XMLHTTP") $xml.Open("GET", $url, 0) $xml.Send $xml.responseXML ConsoleWrite($xml.responseXML) ConsoleWrite($xml.responseXML.xml)