Rust
Rust
Magyar Nemzeti Bank (MNB) Get Currencies
See more REST Misc Examples
The Magyar Nemzeti Bank (MNB) is the central bank of Hungary. In this role, its primary objective is to achieve and maintain price stability. The MNB website is available to visitors in both Hungarian and English. The MNB provides the Arfolyam (trans. Exchange Rate) API, which can be used to retrieve current and historic currency exchange rates. This service uses SOAP calls issued in XML format.This example gets a list of currencies.
Chilkat Rust Downloads
let rest = chilkat::Rest::new();
// URL: http://www.mnb.hu/arfolyamok.asmx
let b_tls = false;
let port = 80;
let b_auto_reconnect = true;
if rest.connect("www.mnb.hu", port, b_tls, b_auto_reconnect).is_err() {
println!("ConnectFailReason: {}", rest.connect_fail_reason());
println!("{}", rest.last_error_text());
return;
}
// --------------------------------------------------------------------------------
// Also see Chilkat's Online WSDL Code Generator
// to generate code and SOAP Request and Response XML for each operation in a WSDL.
// --------------------------------------------------------------------------------
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:web", "http://www.mnb.hu/webservices/");
xml.update_child_content("soapenv:Header", "");
xml.update_child_content("soapenv:Body|web:GetCurrencies", "");
let _ = rest.add_header("Content-Type", "text/xml");
let _ = rest.add_header("SOAPAction", "/webservices/MNBArfolyamServiceSoap/GetCurrencies");
let _ = rest.add_header("Accept", "application/xml");
let sb_request_body = chilkat::StringBuilder::new();
let _ = xml.get_xml_sb(&sb_request_body);
let sb_response_body = chilkat::StringBuilder::new();
if rest.full_request_sb("POST", "/arfolyamok.asmx", &sb_request_body, &sb_response_body).is_err() {
println!("{}", rest.last_error_text());
return;
}
let resp_status_code = rest.response_status_code();
if resp_status_code >= 400 {
println!("Response Status Code = {}", resp_status_code);
println!("Response Header:");
println!("{}", rest.response_header());
println!("Response Body:");
println!("{}", sb_response_body.get_as_string().unwrap_or_default());
return;
}
println!("response status code = {}", resp_status_code);
let xml_response = chilkat::Xml::new();
let _ = xml_response.load_sb(&sb_response_body, true);
println!("{}", xml_response.get_xml().unwrap_or_default());
// The XML response contains this:
// <?xml version="1.0" encoding="utf-8" ?>
// <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
// <s:Body>
// <GetCurrenciesResponse xmlns="http://www.mnb.hu/webservices/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
// <GetCurrenciesResult><MNBCurrencies><Currencies><Curr>HUF</Curr><Curr>EUR</Curr><Curr>AUD</Curr> ... </MNBCurrencies></GetCurrenciesResult>
// </GetCurrenciesResponse>
// </s:Body>
// </s:Envelope>
// Get the GetCurrenciesResult
let result_encoded = xml_response.get_child_content("s:Body|GetCurrenciesResponse|GetCurrenciesResult").unwrap_or_default();
println!("{}", result_encoded);
// Entity decode the result to get XML.
let sb_result = chilkat::StringBuilder::new();
let _ = sb_result.append(&result_encoded);
let _ = sb_result.entity_decode();
// Load it into XML.
let xml_result = chilkat::Xml::new();
let _ = xml_result.load_sb(&sb_result, true);
println!("{}", xml_result.get_xml().unwrap_or_default());
// The result is this:
// <?xml version="1.0" encoding="utf-8" ?>
// <MNBCurrencies>
// <Currencies>
// <Curr>HUF</Curr>
// <Curr>EUR</Curr>
// <Curr>AUD</Curr>
// <Curr>BGN</Curr>
// <Curr>BRL</Curr>
// <Curr>CAD</Curr>
// <Curr>CHF</Curr>
// <Curr>CNY</Curr>
// <Curr>CZK</Curr>
// <Curr>DKK</Curr>
// <Curr>GBP</Curr>
// <Curr>HKD</Curr>
// <Curr>HRK</Curr>
// <Curr>IDR</Curr>
// <Curr>ILS</Curr>
// <Curr>INR</Curr>
// <Curr>ISK</Curr>
// <Curr>JPY</Curr>
// <Curr>KRW</Curr>
// <Curr>MXN</Curr>
// <Curr>MYR</Curr>
// <Curr>NOK</Curr>
// <Curr>NZD</Curr>
// <Curr>PHP</Curr>
// <Curr>PLN</Curr>
// <Curr>RON</Curr>
// <Curr>RSD</Curr>
// <Curr>RUB</Curr>
// <Curr>SEK</Curr>
// <Curr>SGD</Curr>
// <Curr>THB</Curr>
// <Curr>TRY</Curr>
// <Curr>UAH</Curr>
// <Curr>USD</Curr>
// <Curr>ZAR</Curr>
// <Curr>ATS</Curr>
// <Curr>AUP</Curr>
// <Curr>BEF</Curr>
// <Curr>BGL</Curr>
// <Curr>CYN</Curr>
// <Curr>CSD</Curr>
// <Curr>CSK</Curr>
// <Curr>DDM</Curr>
// <Curr>DEM</Curr>
// <Curr>EEK</Curr>
// <Curr>EGP</Curr>
// <Curr>ESP</Curr>
// <Curr>FIM</Curr>
// <Curr>FRF</Curr>
// <Curr>GHP</Curr>
// <Curr>GRD</Curr>
// <Curr>IEP</Curr>
// <Curr>ITL</Curr>
// <Curr>KPW</Curr>
// <Curr>KWD</Curr>
// <Curr>LBP</Curr>
// <Curr>LTL</Curr>
// <Curr>LUF</Curr>
// <Curr>LVL</Curr>
// <Curr>MNT</Curr>
// <Curr>NLG</Curr>
// <Curr>OAL</Curr>
// <Curr>OBL</Curr>
// <Curr>OFR</Curr>
// <Curr>ORB</Curr>
// <Curr>PKR</Curr>
// <Curr>PTE</Curr>
// <Curr>ROL</Curr>
// <Curr>SDP</Curr>
// <Curr>SIT</Curr>
// <Curr>SKK</Curr>
// <Curr>SUR</Curr>
// <Curr>VND</Curr>
// <Curr>XEU</Curr>
// <Curr>XTR</Curr>
// <Curr>YUD</Curr>
// </Currencies>
// </MNBCurrencies>
//