Unicode C++
Unicode C++
Debug REST HTTP Request
See more REST Examples
Demonstrates how to generate the HTTP Request (with all headers intact) without actually sending the request.Note: This example requires Chilkat v9.5.0.77 or later.
Chilkat Unicode C++ Downloads
#include <CkRestW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkBinDataW.h>
void ChilkatSample(void)
{
bool success = false;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// This example will connect to the web server, but does not actually send a request.
// When in DebugMode, the request is composed in memory and can be retrieved by calling
// GetLastDebugRequest.
CkRestW rest;
// Connect Code...
// URL: https://test-api.service.hmrc.gov.uk/organisations/vat/MY_HMRC_VRN/returns
bool bTls = true;
int port = 443;
bool bAutoReconnect = true;
success = rest.Connect(L"test-api.service.hmrc.gov.uk",port,bTls,bAutoReconnect);
if (success != true) {
wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
wprintf(L"%s\n",rest.lastErrorText());
return;
}
// Build the request body...
CkJsonObjectW json;
json.UpdateString(L"periodKey",L"A001");
json.UpdateNumber(L"vatDueSales",L"105.50");
json.UpdateNumber(L"vatDueAcquisitions",L"-100.45");
json.UpdateNumber(L"totalVatDue",L"5.05");
json.UpdateNumber(L"vatReclaimedCurrPeriod",L"105.15");
json.UpdateNumber(L"netVatDue",L"100.10");
json.UpdateInt(L"totalValueSalesExVAT",300);
json.UpdateInt(L"totalValuePurchasesExVAT",300);
json.UpdateInt(L"totalValueGoodsSuppliedExVAT",3000);
json.UpdateInt(L"totalAcquisitionsExVAT",3000);
json.UpdateBool(L"finalised",true);
// Add Headers...
rest.AddHeader(L"Accept",L"application/vnd.hmrc.1.0+json");
rest.AddHeader(L"Authorization",L"Bearer HMRC_ACCESS_TOKEN");
rest.AddHeader(L"Content-Type",L"application/json");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
// Set DebugMode so that no request is actually sent.
rest.put_DebugMode(true);
CkStringBuilderW sbResponseBody;
success = rest.FullRequestSb(L"POST",L"/organisations/vat/MY_HMRC_VRN/returns",sbRequestBody,sbResponseBody);
if (success != true) {
wprintf(L"%s\n",rest.lastErrorText());
return;
}
// Get the exact contents of what would've been sent.
// This includes the HTTP start line, the HTTP request headers, and the request body.
// Given that it's possible for the request body to contain binary data,
// the GetLastDebugRequest fetches into a BinData object.
// In this case, however, our request body contained JSON, so we can
// examine it as a string..
CkBinDataW bdRequest;
success = rest.GetLastDebugRequest(bdRequest);
wprintf(L"----\n");
wprintf(L"%s\n",bdRequest.getString(L"utf-8"));
wprintf(L"----\n");
// The output for the above case:
// POST /organisations/vat/MY_HMRC_VRN/returns HTTP/1.1
// Accept: application/vnd.hmrc.1.0+json
// Host: test-api.service.hmrc.gov.uk
// Authorization: Bearer HMRC_ACCESS_TOKEN
// Content-Type: application/json
// Content-Length: 281
//
// {"periodKey":"A001","vatDueSales":105.50, ... ,"finalised":true}
//
//
}