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
(C) TicketBAI -- Send HTTP POSTSee more TicketBAI ExamplesDemonstrates how to send a TicketBAI POST and get the response.
#include <C_CkHttp.h> #include <C_CkStringBuilder.h> #include <C_CkJsonObject.h> #include <C_CkHttpResponse.h> void ChilkatSample(void) { HCkHttp http; BOOL success; HCkStringBuilder sbXml; HCkJsonObject json; const char *url; BOOL bGzip; HCkHttpResponse resp; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttp_Create(); success = CkHttp_SetSslClientCertPfx(http,"your.pfx","pfx_password"); if (success == FALSE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); return; } // Get the XML we wish to send in the body of the request. sbXml = CkStringBuilder_Create(); success = CkStringBuilder_LoadFile(sbXml,"qa_data/payload.xml","utf-8"); if (success == FALSE) { printf("Failed to load XML that is to be the HTTP request body\n"); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbXml); return; } // Build the following JSON // { // "con": "LROE", // "apa": "1.1", // "inte": { // "nif": "número de identificación fiscal", // "nrs": "nombre o Razón social", // "ap1": "primer apellido", // "ap2": "segundo apellido" // }, // "drs": { // "mode": "140/240", // "ejer": "ejercicio" // } // } // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON json = CkJsonObject_Create(); CkJsonObject_UpdateString(json,"con","LROE"); CkJsonObject_UpdateString(json,"apa","1.1"); CkJsonObject_UpdateString(json,"inte.nif","número de identificación fiscal"); CkJsonObject_UpdateString(json,"inte.nrs","nombre o Razón social"); CkJsonObject_UpdateString(json,"inte.ap1","primer apellido"); CkJsonObject_UpdateString(json,"inte.ap2","segundo apellido"); CkJsonObject_UpdateString(json,"drs.mode","140/240"); CkJsonObject_UpdateString(json,"drs.ejer","ejercicio"); // Add required headers... CkHttp_SetRequestHeader(http,"eus-bizkaia-n3-version","1.0"); CkHttp_SetRequestHeader(http,"eus-bizkaia-n3-content-type","application/xml"); CkHttp_SetRequestHeader(http,"eus-bizkaia-n3-data",CkJsonObject_emit(json)); url = "https://pruesarrerak.bizkaia.eus/N3B4000M/aurkezpena"; bGzip = TRUE; resp = CkHttp_PTextSb(http,"POST",url,sbXml,"utf-8","application/octet-stream",FALSE,bGzip); if (CkHttp_getLastMethodSuccess(http) == FALSE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbXml); CkJsonObject_Dispose(json); return; } CkHttp_ClearHeaders(http); printf("response status code: %d\n",CkHttpResponse_getStatusCode(resp)); // Examine the response (it is already decompressed) printf("response body:\n"); printf("%s\n",CkHttpResponse_bodyStr(resp)); CkHttpResponse_Dispose(resp); CkHttp_Dispose(http); CkStringBuilder_Dispose(sbXml); CkJsonObject_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.