Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Debug REST HTTP RequestDemonstrates 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.
#include <CkRest.h> #include <CkJsonObject.h> #include <CkStringBuilder.h> #include <CkBinData.h> void ChilkatSample(void) { CkString strOut; // 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. CkRest 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; bool success = rest.Connect("test-api.service.hmrc.gov.uk",port,bTls,bAutoReconnect); if (success != true) { strOut.append("ConnectFailReason: "); strOut.appendInt(rest.get_ConnectFailReason()); strOut.append("\r\n"); strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Build the request body... CkJsonObject json; json.UpdateString("periodKey","A001"); json.UpdateNumber("vatDueSales","105.50"); json.UpdateNumber("vatDueAcquisitions","-100.45"); json.UpdateNumber("totalVatDue","5.05"); json.UpdateNumber("vatReclaimedCurrPeriod","105.15"); json.UpdateNumber("netVatDue","100.10"); json.UpdateInt("totalValueSalesExVAT",300); json.UpdateInt("totalValuePurchasesExVAT",300); json.UpdateInt("totalValueGoodsSuppliedExVAT",3000); json.UpdateInt("totalAcquisitionsExVAT",3000); json.UpdateBool("finalised",true); // Add Headers... rest.AddHeader("Accept","application/vnd.hmrc.1.0+json"); rest.AddHeader("Authorization","Bearer HMRC_ACCESS_TOKEN"); rest.AddHeader("Content-Type","application/json"); CkStringBuilder sbRequestBody; json.EmitSb(sbRequestBody); // Set DebugMode so that no request is actually sent. rest.put_DebugMode(true); CkStringBuilder sbResponseBody; success = rest.FullRequestSb("POST","/organisations/vat/MY_HMRC_VRN/returns",sbRequestBody,sbResponseBody); if (success != true) { strOut.append(rest.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); 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.. CkBinData bdRequest; success = rest.GetLastDebugRequest(bdRequest); strOut.append("----"); strOut.append("\r\n"); strOut.append(bdRequest.getString("utf-8")); strOut.append("\r\n"); strOut.append("----"); strOut.append("\r\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} // // SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.