Returns response XML.
Available when the received data has text/xml content type and is valid XML document, otherwise null
.
var value = obj.getResponseXML();
obj.setResponseXML(value);
var req = new AW.HTTP.Request;
req.setURL('<url>');
req.response = function(){
alert(this.getResponseXML()); // show received xml document
}
req.request();