Rust
Rust
Send SOAP multipart/related with XML Body and Zip Attachment
See more REST Misc Examples
Demonstrates how to construct and send a multipart/related POST containing a SOAP XML body and a binary zip attachment.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// This example constructs and sends the following HTTP request.
// (The boundary strings will be different and auto-generated by Chilkat)
// Accept-Encoding: gzip,deflate
// SOAPAction: invio
// Content-Type: Multipart/Related; boundary="MIME_boundary"; type="text/xml"; start="mailto:rootpart@soapui.org"
// MIME-Version: 1.0
//
// --MIME_boundary
// Content-Type: text/xml; charset=UTF-8
// Content-Transfer-Encoding: 8bit
// Content-ID: <rootpart@soapui.org>
//
// <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:attachment.ws.it">
// <soapenv:Header/>
// <soapenv:Body>
// <urn:inputBean>
// <nomeFileAllegato>myfile.zip</nomeFileAllegato>
// </urn:inputBean>
// </soapenv:Body>
// </soapenv:Envelope>
//
// --MIME_boundary
// Content-Type: application/zip
// Content-Transfer-Encoding: binary
// Content-ID: <myfile.zip>
// Content-Disposition: attachment; name="myfile.zip"; filename="myfile.zip"
//
// ... binary zip data goes here ...
// --MIME_boundary--
//
let rest = chilkat::Rest::new();
let _ = rest.add_header("Accept-Encoding", "gzip,deflate");
let _ = rest.add_header("SOAPAction", "invio");
let _ = rest.add_header("Content-Type", "Multipart/Related; boundary=\"MIME_boundary\"; type=\"text/xml\"; start=\"mailto:rootpart@soapui.org\"");
let _ = rest.add_header("MIME-Version", "1.0");
// Build the SOAP XML:
// Use this online tool to generate the code from sample XML:
// Generate Code to Create XML
let xml = chilkat::Xml::new();
xml.set_tag("soapenv:Envelope");
let _ = xml.add_attribute("xmlns:soapenv", "http://schemas.xmlsoap.org/soap/envelope/");
let _ = xml.add_attribute("xmlns:urn", "urn:attachment.ws.it");
xml.update_child_content("soapenv:Header", "");
xml.update_child_content("soapenv:Body|urn:inputBean|nomeFileAllegato", "myfile.zip");
// Build the SOAP XML sub-part
rest.set_part_selector("1");
let _ = rest.add_header("Content-Type", "text/xml; charset=UTF-8");
let _ = rest.add_header("Content-Transfer-Encoding", "8bit");
let _ = rest.add_header("Content-ID", "<rootpart@soapui.org>");
let _ = rest.set_multipart_body_string(&xml.get_xml().unwrap_or_default()).is_ok();
// Build the sub-part containing the .zip
rest.set_part_selector("2");
let _ = rest.add_header("Content-Type", "application/zip");
let _ = rest.add_header("Content-Transfer-Encoding", "binary");
let _ = rest.add_header("Content-ID", "<myfile.zip>");
let _ = rest.add_header("Content-Disposition", "attachment; name=\"myfile.zip\"; filename=\"myfile.zip\"");
// Add a zip file to the 2nd sub-part body.
// This example will load the .zip file into memory, but it is also possible to stream directly from the file as the request is sent
// by calling SetMultipartBodyStream.
let bd = chilkat::BinData::new();
let _ = bd.load_file("qa_data/zips/helloWorld.zip").is_ok();
let _ = rest.set_multipart_body_bd(&bd).is_ok();
// To be safe, always revert the PartSelector back to 0..
rest.set_part_selector("0");
// Send the request by connecting to the web server and then sending..
// Connect using TLS.
let b_auto_reconnect = true;
if rest.connect("www.chilkatsoft.com", 443, true, b_auto_reconnect).is_err() {
println!("{}", rest.last_error_text());
return;
}
// In this example, we're setting DebugMode.
// When debug mode is turned on, no request is actually sent.
// Instead, the request that would be sent is recorded to memory
// and we can retrieve it afterwards..
rest.set_debug_mode(true);
let Ok(response_str) = rest.full_request_multipart("POST", "/someTargetPath") else {
println!("{}", rest.last_error_text());
return;
};
// Retrieve the request that would've been sent and save it to a file.
// We can then examine the file to see if the request was structured as we desired.
// (Note: The zip bytes will be binary data and will appear as garbled garbage in a text editor..)
let bd_request = chilkat::BinData::new();
let _ = rest.get_last_debug_request(&bd_request);
let _ = bd_request.write_file("qa_output/multipartRelatedRequest.bin").is_ok();
println!("OK, examine the output file..");