Sample code for 30+ languages & platforms
Rust

SOAP facturacion.finkok.com Stamp Request

See more SOAP finkok.com Examples

Make a SOAP call to https://demo-facturacion.finkok.com/servicios/soap/stamp

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();

// First build this SOAP XML request body:
// Use this online tool to generate the code from sample XML: 
// Generate Code to Create XML

// <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:stam="http://facturacion.finkok.com/stamp">
//    <soapenv:Header/>
//    <soapenv:Body>
//       <stam:stamp>
//          <stam:xml>cid:20379537153</stam:xml>
//          <stam:username>?</stam:username>
//          <stam:password>?</stam:password>
//       </stam:stamp>
//    </soapenv:Body>
// </soapenv:Envelope>

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:stam", "http://facturacion.finkok.com/stamp");
xml.update_child_content("soapenv:Header", "");
xml.update_child_content("soapenv:Body|stam:stamp|stam:xml", "cid:20379537153");
xml.update_child_content("soapenv:Body|stam:stamp|stam:username", "MY_USERNAME");
xml.update_child_content("soapenv:Body|stam:stamp|stam:password", "MY_PASSWORD");

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

http.set_request_header("SOAPAction", "stamp");

let end_point = "https://demo-facturacion.finkok.com/servicios/soap/stamp".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 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());

// Use this online tool to generate parsing code from sample XML: 
// Generate Parsing Code from XML