Rust Requires Chilkat v11.0.0+
Rust
Peoplevox SaveData
See more Peoplevox Examples
Demonstrates how to call the Peoplevox SaveData SOAP method. This example adds a new carrier (DHL) to the system.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Sends a POST that looks like this:
// POST /PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx HTTP/1.1
// Content-Type: text/xml;charset=UTF-8
// SOAPAction: http://www.peoplevox.net/SaveData
// Content-Length: (automatically computed and added by Chilkat)
// Host: qac.peoplevox.net
//
// <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:peop="http://www.peoplevox.net/">
// <soap:Header>
// <peop:UserSessionCredentials>
// <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>
// <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>
// <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>
// </peop:UserSessionCredentials>
// </soap:Header>
// <soap:Body>
// <peop:SaveData>
// <peop:saveRequest>
// <peop:TemplateName>Carriers</peop:TemplateName>
// <peop:CsvData>CSV_DATA</peop:CsvData>
// <peop:Action>0</peop:Action>
// </peop:saveRequest>
// </peop:SaveData>
// </soap:Body>
// </soap:Envelope>
//
// Notice that a UserId is needed here. This is different than the username required for Peoplevox authentication.
// The UserId for the admin account is 1.
//
let sb_soap_xml = chilkat::StringBuilder::new();
let _ = sb_soap_xml.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n");
let _ = sb_soap_xml.append("<soap:Envelope xmlns:soap=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:peop=\"http://www.peoplevox.net/\">\r\n");
let _ = sb_soap_xml.append(" <soap:Header>\r\n");
let _ = sb_soap_xml.append(" <peop:UserSessionCredentials>\r\n");
let _ = sb_soap_xml.append(" <peop:UserId>PEOPLEVOX_USER_ID</peop:UserId>\r\n");
let _ = sb_soap_xml.append(" <peop:ClientId>PEOPLEVOX_CLIENT_ID</peop:ClientId>\r\n");
let _ = sb_soap_xml.append(" <peop:SessionId>PEOPLEVOX_SESSION_ID</peop:SessionId>\r\n");
let _ = sb_soap_xml.append(" </peop:UserSessionCredentials>\r\n");
let _ = sb_soap_xml.append(" </soap:Header>\r\n");
let _ = sb_soap_xml.append(" <soap:Body>\r\n");
let _ = sb_soap_xml.append(" <peop:SaveData>\r\n");
let _ = sb_soap_xml.append(" <peop:saveRequest>\r\n");
let _ = sb_soap_xml.append(" <peop:TemplateName>Carriers</peop:TemplateName>\r\n");
let _ = sb_soap_xml.append(" <peop:CsvData>CSV_DATA</peop:CsvData>\r\n");
let _ = sb_soap_xml.append(" <peop:Action>0</peop:Action>\r\n");
let _ = sb_soap_xml.append(" </peop:saveRequest>\r\n");
let _ = sb_soap_xml.append(" </peop:SaveData>\r\n");
let _ = sb_soap_xml.append(" </soap:Body>\r\n");
let _ = sb_soap_xml.append("</soap:Envelope>");
let sb_csv_data = chilkat::StringBuilder::new();
let _ = sb_csv_data.append("Name,Reference\r\n");
let _ = sb_csv_data.append("DHL,D0001");
let num_replacements = sb_soap_xml.replace("CSV_DATA", &sb_csv_data.get_as_string().unwrap_or_default());
let req = chilkat::HttpRequest::new();
req.set_http_verb("POST");
req.set_send_charset(true);
req.set_charset("utf-8");
req.add_header("Content-Type", "text/xml");
req.add_header("SOAPAction", "http://www.peoplevox.net/SaveData");
req.set_path("/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx");
let _ = req.load_body_from_string(&sb_soap_xml.get_as_string().unwrap_or_default(), "utf-8").is_ok();
let http = chilkat::Http::new();
http.set_follow_redirects(true);
let resp = chilkat::HttpResponse::new();
if http.http_s_req("qac.peoplevox.net", 443, true, &req, &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
// We should expect a 200 response if successful.
if resp.status_code() != 200 {
println!("Response StatusCode = {}", resp.status_code());
println!("Response StatusLine: {}", resp.status_line());
println!("Response Header:");
println!("{}", resp.header());
println!("{}", resp.body_str());
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());
// A successful response is shown below.
// To parse a successful response:
let reference = xml_response.chilkat_path("soap:Body|SaveDataResponse|SaveDataResult|Statuses|IntegrationStatusResponse|Reference|*").unwrap_or_default();
println!("Reference = {}", reference);
let status = xml_response.chilkat_path("soap:Body|SaveDataResponse|SaveDataResult|Statuses|IntegrationStatusResponse|Status|*").unwrap_or_default();
println!("Status = {}", status);
// <?xml version="1.0" encoding="utf-8" ?>
// <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
// <soap:Body>
// <SaveDataResponse xmlns="http://www.peoplevox.net/">
// <SaveDataResult>
// <ResponseId>0</ResponseId>
// <TotalCount>1</TotalCount>
// <Detail />
// <Statuses>
// <IntegrationStatusResponse>
// <Reference>D0001</Reference>
// <Status>Success</Status>
// <LineNo>0</LineNo>
// </IntegrationStatusResponse>
// </Statuses>
// <ImportingQueueId>0</ImportingQueueId>
// <SalesOrdersToDespatchIds />
// </SaveDataResult>
// </SaveDataResponse>
// </soap:Body>
// </soap:Envelope>