Sample code for 30+ languages & platforms
Rust

SOAP demoemision.thefactoryhka.com.pa DescargaPDF

See more REST Misc Examples

Make a SOAP call to http://demoemision.thefactoryhka.com.pa/ws/obj/v1.0/Service.svc with SOAPAction http://tempuri.org/IService/DescargaPDF

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:tem="http://tempuri.org/" xmlns:ser="http://schemas.datacontract.org/2004/07/Services.Model">
//    <soapenv:Header/>
//    <soapenv:Body>
//       <tem:DescargaPDF>
//          <tem:tokenEmpresa>?</tem:tokenEmpresa>
//          <tem:tokenPassword>?</tem:tokenPassword>
//          <tem:datosDocumento>
//             <ser:codigoSucursalEmisor>?</ser:codigoSucursalEmisor>
//              <ser:numeroDocumentoFiscal>?</ser:numeroDocumentoFiscal>
//             <ser:puntoFacturacionFiscal>?</ser:puntoFacturacionFiscal>
//             <ser:serialDispositivo>?</ser:serialDispositivo>
//             <ser:tipoDocumento>?</ser:tipoDocumento>
//             <ser:tipoEmision>?</ser:tipoEmision>
//          </tem:datosDocumento>
//       </tem:DescargaPDF>
//    </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:tem", "http://tempuri.org/");
let _ = xml.add_attribute("xmlns:ser", "http://schemas.datacontract.org/2004/07/Services.Model");
xml.update_child_content("soapenv:Header", "");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:tokenEmpresa", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:tokenPassword", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:datosDocumento|ser:codigoSucursalEmisor", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:datosDocumento|ser:numeroDocumentoFiscal", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:datosDocumento|ser:puntoFacturacionFiscal", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:datosDocumento|ser:serialDispositivo", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:datosDocumento|ser:tipoDocumento", "?");
xml.update_child_content("soapenv:Body|tem:DescargaPDF|tem:datosDocumento|ser:tipoEmision", "?");

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

http.set_request_header("SOAPAction", "http://tempuri.org/IService/DescargaPDF");
http.set_request_header("Content-Type", "text/xml; charset=utf-8");

let end_point = "http://demoemision.thefactoryhka.com.pa/ws/obj/v1.0/Service.svc".to_string();

let resp = chilkat::HttpResponse::new();
if http.http_str("POST", &end_point, &str_xml, "utf-8", "application/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