Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) 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.
integer li_rc oleobject loo_Rest integer li_BTls integer li_Port integer li_BAutoReconnect integer li_Success oleobject loo_Json oleobject loo_SbRequestBody oleobject loo_SbResponseBody oleobject loo_BdRequest // 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. loo_Rest = create oleobject // Use "Chilkat_9_5_0.Rest" for versions of Chilkat < 10.0.0 li_rc = loo_Rest.ConnectToNewObject("Chilkat.Rest") if li_rc < 0 then destroy loo_Rest MessageBox("Error","Connecting to COM object failed") return end if // Connect Code... // URL: https://test-api.service.hmrc.gov.uk/organisations/vat/MY_HMRC_VRN/returns li_BTls = 1 li_Port = 443 li_BAutoReconnect = 1 li_Success = loo_Rest.Connect("test-api.service.hmrc.gov.uk",li_Port,li_BTls,li_BAutoReconnect) if li_Success <> 1 then Write-Debug "ConnectFailReason: " + string(loo_Rest.ConnectFailReason) Write-Debug loo_Rest.LastErrorText destroy loo_Rest return end if // Build the request body... loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") loo_Json.UpdateString("periodKey","A001") loo_Json.UpdateNumber("vatDueSales","105.50") loo_Json.UpdateNumber("vatDueAcquisitions","-100.45") loo_Json.UpdateNumber("totalVatDue","5.05") loo_Json.UpdateNumber("vatReclaimedCurrPeriod","105.15") loo_Json.UpdateNumber("netVatDue","100.10") loo_Json.UpdateInt("totalValueSalesExVAT",300) loo_Json.UpdateInt("totalValuePurchasesExVAT",300) loo_Json.UpdateInt("totalValueGoodsSuppliedExVAT",3000) loo_Json.UpdateInt("totalAcquisitionsExVAT",3000) loo_Json.UpdateBool("finalised",1) // Add Headers... loo_Rest.AddHeader("Accept","application/vnd.hmrc.1.0+json") loo_Rest.AddHeader("Authorization","Bearer HMRC_ACCESS_TOKEN") loo_Rest.AddHeader("Content-Type","application/json") loo_SbRequestBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat.StringBuilder") loo_Json.EmitSb(loo_SbRequestBody) // Set DebugMode so that no request is actually sent. loo_Rest.DebugMode = 1 loo_SbResponseBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder") li_Success = loo_Rest.FullRequestSb("POST","/organisations/vat/MY_HMRC_VRN/returns",loo_SbRequestBody,loo_SbResponseBody) if li_Success <> 1 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest destroy loo_Json destroy loo_SbRequestBody destroy loo_SbResponseBody return end if // 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.. loo_BdRequest = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_BdRequest.ConnectToNewObject("Chilkat.BinData") li_Success = loo_Rest.GetLastDebugRequest(loo_BdRequest) Write-Debug "----" Write-Debug loo_BdRequest.GetString("utf-8") Write-Debug "----" // 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} // // destroy loo_Rest destroy loo_Json destroy loo_SbRequestBody destroy loo_SbResponseBody destroy loo_BdRequest |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.