Rust Requires Chilkat v11.0.0+
Rust
Another SOAP with MTOM XOP Attachment Example
See more HTTP Examples
Demonstrates another multipart/related MTOM SOAP request that adds additional headers in each MIME sub-part, and also specifies Content-Transfer-Encoding in the sub-parts.Chilkat Rust Downloads
// This example sends a request such as the following:
// POST /FseInsServicesWeb/services/fseComunicazioneMetadati HTTP/1.1
// Connection: Keep-Alive
// Content-Length: 50649
// Content-Type: multipart/related; type="application/xop+xml"; start="<rootpart@soapui.org>"; start-info="text/xml"; boundary="----=_Part_0_355796458.1662133302632"
// Accept-Encoding: gzip,deflate
// Authorization: Basic xxxxx
// Host: ...
// SOAPAction: "http://comunicazionemetadati.wsdl.fse.ini.finanze.it/ComunicazioneMetadati"
// MIME-Version: 1.0
//
// ------=_Part_0_355796458.1662133302632
// Content-Type: application/xop+xml; charset=UTF-8; type="text/xml"
// Content-Transfer-Encoding: 8bit
// Content-ID: <rootpart@soapui.org>
//
// <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://comunicazionemetadatirichiesta.xsd.fse.ini.finanze.it" xmlns:tip="http://tipodaticomunicazionemetadati.xsd.fse.ini.finanze.it">
// <soapenv:Header/>
// ...
//
// ------=_Part_0_355796458.1662133302632
// Content-Type: text/xml; charset=Cp1252
// Content-Transfer-Encoding: quoted-printable
// Content-ID: <CDA2LAB_190_signed.xml>
// Content-Disposition: attachment; name="CDA2LAB_190_signed.xml"
//
// <!-- INSERIRE IL RIFERIMENTO AL FOGLIO DI STILE DI AGID OPPURE INSERIRNE UN=
// ...
//
// ------=_Part_0_355796458.1662133302632--
let http = chilkat::Http::new();
let req = chilkat::HttpRequest::new();
req.set_http_verb("POST");
req.set_path("/FseInsServicesWeb/services/fseComunicazioneMetadati");
// Chilkat will automatically generate and add a boundary string.
req.set_content_type("multipart/related; type=\"application/xop+xml\"; start=\"<rootpart@soapui.org>\"; start-info=\"text/xml\"");
req.add_header("SOAPAction", "some-SOAP-action");
req.add_header("Connection", "Keep-Alive");
req.add_header("Accept-Encoding", "gzip,deflate");
req.add_header("MIME-Version", "1.0");
// Chilkat will automatically add the Content-Length and Host headers.
// The "Authorization: Basic ..." header is added by setting the Login and Password and specifying Basic authentication:
http.set_login("...");
http.set_password("...");
http.set_basic_auth(true);
// Add the 1st multipart/related sub-part, which is the SOAP envelope.
let xml_body = "<soapenv:Envelope ....".to_string();
let _ = req.add_string_for_upload2("", "", &xml_body, "utf-8", "application/xop+xml; type=\"text/xml\"; charset=utf-8").is_ok();
// Additional headers for the 1st sub-part
let _ = req.add_sub_header(0, "Content-ID", "<rootpart@soapui.org>").is_ok();
let _ = req.add_sub_header(0, "Content-Transfer-Encoding", "8bit").is_ok();
let _ = req.add_sub_header(0, "Content-Disposition", "").is_ok();
// Add the 2nd multipart/related sub-part, which is the signed XML
let xml_body2 = "<!-- INSERIRE IL RIFERIMENT ....".to_string();
let _ = req.add_string_for_upload2("CDA2LAB_190_signed.xml", "", &xml_body2, "Cp1252", "text/xml; charset=Cp1252").is_ok();
// Additional headers for the 2nd sub-part.
let _ = req.add_sub_header(1, "Content-ID", "<CDA2LAB_190_signed.xml>").is_ok();
let _ = req.add_sub_header(1, "Content-Transfer-Encoding", "quoted-printable").is_ok();
let _ = req.add_sub_header(1, "Content-Disposition", "attachment; name=\"CDA2LAB_190_signed.xml\"").is_ok();
http.set_follow_redirects(true);
let use_tls = true;
let resp = chilkat::HttpResponse::new();
if http.http_s_req("fseservicetest.sanita.finanze.it", 443, use_tls, &req, &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
let xml_response = chilkat::Xml::new();
let _ = xml_response.load_xml(&resp.body_str()).is_ok();
println!("{}", xml_response.get_xml().unwrap_or_default());