Unicode C++
Unicode C++
Hungary NAV Manage Annulment Request
See more Hungary NAV Invoicing Examples
Demonstrates the manageAnnulment request for the Hungarian NAV Online Invoicing System REST API v2.0.Chilkat Unicode C++ Downloads
#include <CkCrypt2W.h>
#include <CkDateTimeW.h>
#include <CkPrngW.h>
#include <CkStringBuilderW.h>
#include <CkXmlW.h>
#include <CkBinDataW.h>
#include <CkHttpW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
bool success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Build the following XML:
// Use this online tool to generate code from sample XML:
// Generate Code to Create XML
// <?xml version="1.0" encoding="UTF-8"?>
// <ManageAnnulmentRequest xmlns="http://schemas.nav.gov.hu/OSA/2.0/api">
// <header>
// <requestId>RID338592103413</requestId>
// <timestamp>2019-09-11T13:37:09.385Z</timestamp>
// <requestVersion>2.0</requestVersion>
// <headerVersion>1.0</headerVersion>
// </header>
// <user>
// <login>lwilsmn0uqdxe6u</login>
// <passwordHash>2F43840A882CFDB7DB0 ... F6CA57FE8CD74DC28E</passwordHash>
// <taxNumber>11111111</taxNumber>
// <requestSignature>A297E3BD9 ... 1959ADFAF5</requestSignature>
// </user>
// <software>
// <softwareId>123456789123456789</softwareId>
// <softwareName>string</softwareName>
// <softwareOperation>LOCAL_SOFTWARE</softwareOperation>
// <softwareMainVersion>string</softwareMainVersion>
// <softwareDevName>string</softwareDevName>
// <softwareDevContact>string</softwareDevContact>
// <softwareDevCountryCode>HU</softwareDevCountryCode>
// <softwareDevTaxNumber>string</softwareDevTaxNumber>
// </software>
// <exchangeToken>dbd03076-3a9b-4312-bbbb-0cee3a6472572P11CS49ASIL</exchangeToken>
// <annulmentOperations>
// <annulmentOperation>
// <index>1</index>
// <annulmentOperation>ANNUL</annulmentOperation>
// <invoiceAnnulment>PD94bWwgdm ... ubnVsbWVudD4=</invoiceAnnulment>
// </annulmentOperation>
// </annulmentOperations>
// </ManageAnnulmentRequest>
CkCrypt2W crypt;
CkDateTimeW dtNow;
dtNow.SetFromCurrentSystemTime();
wprintf(L"%s\n",dtNow.getAsTimestamp(false));
// The hash algorithm for the password is SHA512 (not SHA3-512).
crypt.put_HashAlgorithm(L"sha512");
crypt.put_EncodingMode(L"hex");
const wchar_t *myPassword = L"my-password";
const wchar_t *passwordHash = crypt.hashStringENC(myPassword);
// Generate a random request ID like "RID215118906689"
CkPrngW prng;
CkStringBuilderW sbRequestId;
sbRequestId.Append(L"RID");
sbRequestId.Append(prng.randomString(12,true,false,false));
wprintf(L"generated requestId = %s\n",sbRequestId.getAsString());
// Calculate the requestSignature
crypt.put_HashAlgorithm(L"sha3-512");
const wchar_t *signatureKey = L"ce-8f5e-215119fa7dd621DLMRHRLH2S";
CkStringBuilderW sbFinalHashBase;
// First append the timestamp because we are going to remove certain chars/parts.
sbFinalHashBase.Append(dtNow.getAsTimestamp(false));
int numReplaced = sbFinalHashBase.Replace(L"Z",L"");
numReplaced = sbFinalHashBase.Replace(L"-",L"");
numReplaced = sbFinalHashBase.Replace(L":",L"");
numReplaced = sbFinalHashBase.Replace(L"T",L"");
// Prepend the requestId and append the signatureKey
sbFinalHashBase.Prepend(sbRequestId.getAsString());
sbFinalHashBase.Append(signatureKey);
// Calculate first (and only) index hash.
const wchar_t *invoiceOperation = L"ANNUL";
const wchar_t *invoiceData = L"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9InllcyI/Pg0KPEludm9pY2VBbm51bG1lbnQgeG1sbnM9Imh0dHA6Ly9zY2hlbWFzLm5hdi5nb3YuaHUvT1NBLzIuMC9hbm51bCI+DQoJCTxhbm51bG1lbnRSZWZlcmVuY2U+MjIyMjIyMjI8L2FubnVsbWVudFJlZmVyZW5jZT4NCgkJPGFubnVsbWVudFRpbWVzdGFtcD4yMDE4LTA2LTE4VDA5OjEwOjQ1LjMwOVo8L2FubnVsbWVudFRpbWVzdGFtcD4NCgkJPGFubnVsbWVudENvZGU+RVJSQVRJQ19EQVRBPC9hbm51bG1lbnRDb2RlPg0KCQk8YW5udWxtZW50UmVhc29uPmNyZWF0ZSBzemFtbGEgYW5udWw8L2FubnVsbWVudFJlYXNvbj4NCjwvSW52b2ljZUFubnVsbWVudD4=";
CkStringBuilderW sbHashBase;
sbHashBase.Append(invoiceOperation);
sbHashBase.Append(invoiceData);
const wchar_t *firstHash = crypt.hashStringENC(sbHashBase.getAsString());
// Append the index hash to the final hash base.
sbFinalHashBase.Append(firstHash);
// Get our request signature (using sha3-512 because our HashAlgorithm was set to "sha3-512" up above...)
const wchar_t *requestSignature = crypt.hashStringENC(sbFinalHashBase.getAsString());
// Load our recently obtained exchange token.
// See Hungary NAV Invoicing Token Exchange Sample Code
CkXmlW xmlExchangeToken;
success = xmlExchangeToken.LoadXmlFile(L"qa_data/tokens/nav_exchange_token.xml");
if (success == false) {
wprintf(L"%s\n",xmlExchangeToken.lastErrorText());
return;
}
// Get the base64 encoded/encrypted exchange token.
// IMPORTANT: Make sure to use the exchange token before it expires.
// If it expired, then get a new one..
const wchar_t *encodedEncryptedExchangeToken = xmlExchangeToken.getChildContent(L"encodedExchangeToken");
// Decode to binary.
CkBinDataW bdExchangeToken;
bdExchangeToken.AppendEncoded(encodedEncryptedExchangeToken,L"base64");
// Decrypt using your 16-digit replacement key:
crypt.put_CryptAlgorithm(L"aes");
crypt.put_CipherMode(L"ecb");
crypt.put_KeyLength(128);
crypt.put_EncodingMode(L"base64");
// Pass your 16-digit replacement key here:
crypt.SetEncodedKey(L"99952BBAAAAA8XYZ",L"ascii");
crypt.DecryptBd(bdExchangeToken);
const wchar_t *exchangeToken = bdExchangeToken.getString(L"utf-8");
wprintf(L"exchange token = %s\n",exchangeToken);
// Now build the XML..
CkXmlW xml;
xml.put_Tag(L"ManageAnnulmentRequest");
xml.AddAttribute(L"xmlns",L"http://schemas.nav.gov.hu/OSA/2.0/api");
xml.UpdateChildContent(L"header|requestId",sbRequestId.getAsString());
xml.UpdateChildContent(L"header|timestamp",dtNow.getAsTimestamp(false));
xml.UpdateChildContent(L"header|requestVersion",L"2.0");
xml.UpdateChildContent(L"header|headerVersion",L"1.0");
xml.UpdateChildContent(L"user|login",L"lwilsmn0uqdxe6u");
xml.UpdateChildContent(L"user|passwordHash",passwordHash);
xml.UpdateChildContent(L"user|taxNumber",L"11111111");
xml.UpdateChildContent(L"user|requestSignature",requestSignature);
xml.UpdateChildContent(L"software|softwareId",L"123456789123456789");
xml.UpdateChildContent(L"software|softwareName",L"string");
xml.UpdateChildContent(L"software|softwareOperation",L"LOCAL_SOFTWARE");
xml.UpdateChildContent(L"software|softwareMainVersion",L"string");
xml.UpdateChildContent(L"software|softwareDevName",L"string");
xml.UpdateChildContent(L"software|softwareDevContact",L"string");
xml.UpdateChildContent(L"software|softwareDevCountryCode",L"HU");
xml.UpdateChildContent(L"software|softwareDevTaxNumber",L"string");
xml.UpdateChildContent(L"exchangeToken",exchangeToken);
xml.UpdateChildContent(L"annulmentOperations|annulmentOperation|index",L"1");
xml.UpdateChildContent(L"annulmentOperations|annulmentOperation|annulmentOperation",invoiceOperation);
xml.UpdateChildContent(L"annulmentOperations|annulmentOperation|invoiceAnnulment",invoiceData);
// POST the XML to https://api-test.onlineszamla.nav.gov.hu/invoiceService/v2/manageAnnulment
CkHttpW http;
http.put_Accept(L"application/xml");
const wchar_t *endpoint = L"https://api-test.onlineszamla.nav.gov.hu/invoiceService/v2/manageAnnulment";
CkHttpResponseW resp;
success = http.HttpStr(L"POST",endpoint,xml.getXml(),L"utf-8",L"application/xml",resp);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"Response status code = %d\n",resp.get_StatusCode());
CkXmlW respXml;
respXml.LoadXml(resp.bodyStr());
wprintf(L"Response body:\n");
wprintf(L"%s\n",respXml.getXml());
// The result looks like this:
// <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
// <ManageAnnulmentResponse xmlns="http://schemas.nav.gov.hu/OSA/2.0/api" xmlns:ns2="http://schemas.nav.gov.hu/OSA/2.0/data">
// <header>
// <requestId>RID465317110495</requestId>
// <timestamp>2020-03-25T15:08:40Z</timestamp>
// <requestVersion>2.0</requestVersion>
// <headerVersion>1.0</headerVersion>
// </header>
// <result>
// <funcCode>OK</funcCode>
// </result>
// <software>
// <softwareId>123456789123456789</softwareId>
// <softwareName>string</softwareName>
// <softwareOperation>LOCAL_SOFTWARE</softwareOperation>
// <softwareMainVersion>string</softwareMainVersion>
// <softwareDevName>string</softwareDevName>
// <softwareDevContact>string</softwareDevContact>
// <softwareDevCountryCode>HU</softwareDevCountryCode>
// <softwareDevTaxNumber>string</softwareDevTaxNumber>
// </software>
// <transactionId>2WT6XG9LQ0U9VQNA</transactionId>
// </ManageAnnulmentResponse>
// Use this online tool to generate parsing code from sample XML:
// Generate Parsing Code from XML
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
// See this example explaining how this memory should be used: const char * functions.
const wchar_t *ManageAnnulmentResponse_xmlns = respXml.getAttrValue(L"xmlns");
const wchar_t *ManageAnnulmentResponse_xmlns_ns2 = respXml.getAttrValue(L"xmlns:ns2");
const wchar_t *requestId = respXml.getChildContent(L"header|requestId");
const wchar_t *timestamp = respXml.getChildContent(L"header|timestamp");
const wchar_t *requestVersion = respXml.getChildContent(L"header|requestVersion");
const wchar_t *headerVersion = respXml.getChildContent(L"header|headerVersion");
const wchar_t *funcCode = respXml.getChildContent(L"result|funcCode");
const wchar_t *softwareId = respXml.getChildContent(L"software|softwareId");
const wchar_t *softwareName = respXml.getChildContent(L"software|softwareName");
const wchar_t *softwareOperation = respXml.getChildContent(L"software|softwareOperation");
const wchar_t *softwareMainVersion = respXml.getChildContent(L"software|softwareMainVersion");
const wchar_t *softwareDevName = respXml.getChildContent(L"software|softwareDevName");
const wchar_t *softwareDevContact = respXml.getChildContent(L"software|softwareDevContact");
const wchar_t *softwareDevCountryCode = respXml.getChildContent(L"software|softwareDevCountryCode");
const wchar_t *softwareDevTaxNumber = respXml.getChildContent(L"software|softwareDevTaxNumber");
const wchar_t *transactionId = respXml.getChildContent(L"transactionId");
}