Rust Requires Chilkat v11.0.0+
Rust
Alabama Motor Fuel Excise Tax E-Filing SOAP XML POST (NewSubmission)
See more HTTP Misc Examples
Demonstrates how to post a NewSubmission to the Alabama MFET (Motor Fuel Excise Tax) e-File.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
// Here is an example of an HTTP POST Request we'll be sending:
// POST /WebServices/MFET/ HTTP/1.1
// Content-Type: text/xml
// SOAPAction: NewSubmission
//
// <soapenv:Envelope
// xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
// xmlns:tem="http://tempuri.org/"
// xmlns:xsd="http://www.w3.org/2001/XMLSchema"
// xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
// <soapenv:Header/>
// <soapenv:Body>
// <tem:NewSubmission>
// <tem:UserName>yourusername</tem:UserName>
// <tem:Password>yourpassword</tem:Password>
// <tem:File xsi:type="xsd:base64Binary">TRANSMISSION_XML_FILE_CONTENTS_AS_BASE64</tem:File>
// </tem:NewSubmission>
// </soapenv:Body>
// </soapenv:Envelope>
// In the above XML, the "TRANSMISSION_XML_FILE_CONTENTS_AS_BASE64" contains the base64 encoded
// string of the XML file that contains "<Transmission> ... </Transmission>"
// First let's load the transmission XML file and get the contents as base64.
let sb_xml_file_data = chilkat::StringBuilder::new();
if sb_xml_file_data.load_file("qa_data/xml/AL_SR_999802_test.xml", "utf-8").is_err() {
println!("Failed to load XML file.");
return;
}
let _ = sb_xml_file_data.encode("base64", "utf-8");
// Build the XMl that will be the body of the HTTP request.
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:tem", "http://tempuri.org/");
let _ = xml.add_attribute("xmlns:xsd", "http://www.w3.org/2001/XMLSchema");
let _ = xml.add_attribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
xml.update_child_content("soapenv:Header", "");
xml.update_child_content("soapenv:Body|tem:NewSubmission|tem:UserName", "yourusername");
xml.update_child_content("soapenv:Body|tem:NewSubmission|tem:Password", "yourpassword");
let _ = xml.update_attr_at("soapenv:Body|tem:NewSubmission|tem:File", true, "xsi:type", "xsd:base64Binary");
xml.update_child_content("soapenv:Body|tem:NewSubmission|tem:File", &sb_xml_file_data.get_as_string().unwrap_or_default());
let http = chilkat::Http::new();
http.set_request_header("SoapAction", "NewSubmission");
let sb_xml = chilkat::StringBuilder::new();
let _ = xml.get_xml_sb(&sb_xml);
let resp = chilkat::HttpResponse::new();
if http.http_sb("POST", "https://mattest.alabama.gov/WebServices/MFET/", &sb_xml, "utf-8", "text/xml", &resp).is_err() {
println!("{}", http.last_error_text());
return;
}
println!("Response status code = {}", resp.status_code());
println!("Response body text:");
println!("{}", resp.body_str());
// The response will look like this:
// <?xml version="1.0" encoding="utf-8" ?>
// <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
// <s:Body>
// <NewSubmissionResponse xmlns="http://tempuri.org/">
// <NewSubmissionResult i:type="a:base64Binary" xmlns:a="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">BASE64_RESULT</NewSubmissionResult>
// </NewSubmissionResponse>
// </s:Body>
// </s:Envelope>
// We can get the base64 result like this:
let xml_result = chilkat::Xml::new();
let _ = xml_result.load_xml(&resp.body_str());
let sb_result = chilkat::StringBuilder::new();
let _ = sb_result.append(&xml_result.get_child_content("s:Body|NewSubmissionResponse|NewSubmissionResult").unwrap_or_default());
let _ = sb_result.decode("base64", "utf-8");
println!("Decoded result:");
println!("{}", sb_result.get_as_string().unwrap_or_default());
// A sample of a decoded error response:
// <?xml version="1.0" encoding="utf-8"?>
// <!--ADOR Acknowledgement 1-->
// <Transmission xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.irs.gov/efile">
// <Jurisdiction>ALABAMA</Jurisdiction>
// <TransmissionId>2018-09-1019:14R000000001</TransmissionId>
// <Timestamp>2018-09-10T19:14:12Z</Timestamp>
// <Transmitter>
// <ETIN>00000</ETIN>
// </Transmitter>
// <ProcessType>P</ProcessType>
// <AgentIdentifier>ACK</AgentIdentifier>
// <AcknowledgementID>0</AcknowledgementID>
// <AcknowledgementTimeStamp>2018-09-11T21:16:34-05:00</AcknowledgementTimeStamp>
// <Errors>
// <Error>Process Type must be 'T' when submitted to Testing Web Service</Error>
// </Errors>
// </Transmission>