Sample code for 30+ languages & platforms
AutoIt

Load XML Object from HTTP Response Body

Demonstrates how to load the HTTP response body directly into an XML object.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oHttp = ObjCreate("Chilkat.Http")

$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpStr("GET","https://www.chilkatsoft.com/exampledata/inventory.xml","","","",$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oXml = ObjCreate("Chilkat.Xml")

; If we wish to transfer (instead of copy) the XML from the HttpResponse to the Xml, then add the keyword "TakeResponseBody" to UncommonOptions
; This could save memory for extremely large XML responses.
$oResp.UncommonOptions = "TakeResponseBody"

$oResp.GetBodyXml($oXml)

ConsoleWrite($oXml.GetXml() & @CRLF)

; Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
ConsoleWrite("----" & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)