Sample code for 30+ languages & platforms
Rust

SOAP e-factura.sunat.gob.pe getStatusCdr

See more HTTP Misc Examples

Make a SOAP call to https://e-factura.sunat.gob.pe/ol-it-wsconscpegem/billConsultService

Chilkat Rust Downloads

Rust

// 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.
// --------------------------------------------------------------------------------

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

// <soapenv:Envelope xmlns:ser="http://service.sunat.gob.pe"
//   xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
//   xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
//  <soapenv:Header>
//   <wsse:Security>        
//    <wsse:UsernameToken>          
//     <wsse:Username>MY_USERNAME</wsse:Username>
//     <wsse:Password>MY_PASSWORD</wsse:Password>
//    </wsse:UsernameToken>      
//   </wsse:Security>
//  </soapenv:Header>
//  <soapenv:Body>
//   <ser:getStatus>
//    <rucComprobante>99999999999</rucComprobante>
//    <tipoComprobante>01</tipoComprobante>
//    <serieComprobante>F001</serieComprobante>
//    <numeroComprobante>55555</numeroComprobante>
//   </ser:getStatus>
//  </soapenv:Body>
//  </soapenv:Envelope> 
// 

let xml = chilkat::Xml::new();
xml.set_tag("soapenv:Envelope");
let _ = xml.add_attribute("xmlns:ser", "http://service.sunat.gob.pe");
let _ = xml.add_attribute("xmlns:soapenv", "http://schemas.xmlsoap.org/soap/envelope/");
let _ = xml.add_attribute("xmlns:wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd");
xml.update_child_content("soapenv:Header|wsse:Security|wsse:UsernameToken|wsse:Username", "MY_USERNAME");
xml.update_child_content("soapenv:Header|wsse:Security|wsse:UsernameToken|wsse:Password", "MY_PASSWORD");
xml.update_child_content("soapenv:Body|ser:getStatus|rucComprobante", "99999999999");
xml.update_child_content("soapenv:Body|ser:getStatus|tipoComprobante", "01");
xml.update_child_content("soapenv:Body|ser:getStatus|serieComprobante", "F001");
xml.update_child_content("soapenv:Body|ser:getStatus|numeroComprobante", "55555");

let str_xml = xml.get_xml().unwrap_or_default();

http.set_request_header("SOAPAction", "urn:getStatusCdr");

let end_point = "https://e-factura.sunat.gob.pe/ol-it-wsconscpegem/billConsultService".to_string();

let resp = chilkat::HttpResponse::new();
if http.http_str("POST", &end_point, &str_xml, "utf-8", "text/xml", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

let mut status_code = resp.status_code();
if status_code != 200 {
    println!("Non-success status code: {}", status_code);
    println!("Response header: {}", resp.header());
    println!("Response body: {}", resp.body_str());
    println!("Unsuccessful.");
    return;
}

let xml_resp = chilkat::Xml::new();
let _ = xml_resp.load_xml(&resp.body_str());

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

// A sample response:

// <?xml version="1.0" encoding="UTF-8"?>
// <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
//     <S:Body>
//         <ns0:getStatusResponse xmlns:ns0="http://service.sunat.gob.pe">
//             <status>
//                 <statusCode>0001</statusCode>
//                 <statusMessage>El comprobante existe y est� aceptado.</statusMessage>
//             </status>
//         </ns0:getStatusResponse>
//     </S:Body>
// </S:Envelope>
// 

// Parse the response...
let s_envelope_xmlns_s = xml.get_attr_value("xmlns:S").unwrap_or_default();
let ns0_get_status_response_xmlns_ns0 = xml.chilkat_path("S:Body|ns0:getStatusResponse|(xmlns:ns0)").unwrap_or_default();
status_code = xml.get_child_int_value("S:Body|ns0:getStatusResponse|status|statusCode");
let status_message = xml.get_child_content("S:Body|ns0:getStatusResponse|status|statusMessage").unwrap_or_default();