Sample code for 30+ languages & platforms
Xbase++ Requires Chilkat v11.0.0+

Load XML Object from HTTP Response Body

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

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oResp
LOCAL oXml

nSuccess := 0

oHttp := CreateObject("Chilkat.Http")

oResp := CreateObject("Chilkat.HttpResponse")
nSuccess := oHttp:HttpStr("GET", "https://www.chilkatsoft.com/exampledata/inventory.xml", "", "", "", oResp)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oResp:destroy()
    RETURN
ENDIF

oXml := CreateObject("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)

? oXml:GetXml()

//  Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
? "----"
? oResp:BodyStr

oHttp:destroy()
oResp:destroy()
oXml:destroy()