Sample code for 30+ languages & platforms
Rust 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 Rust Downloads

Rust

let http = chilkat::Http::new();

let resp = chilkat::HttpResponse::new();
if http.http_str("GET", "https://www.chilkatsoft.com/exampledata/inventory.xml", "", "", "", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

let xml = chilkat::Xml::new();

// 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.
resp.set_uncommon_options("TakeResponseBody");

let _ = resp.get_body_xml(&xml);

println!("{}", xml.get_xml().unwrap_or_default());

// Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
println!("----");
println!("{}", resp.body_str());