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) PostXml vs. PostUrlEncodedThis example shows the differences in the HTTP requests sent by PostXml vs. PostUrlEncoded. With PostXml, the body of the request is the XML document itself. With PostUrlEncoded, the body of the request is composed of URL encoded params, as shown in the example below.
#include <C_CkHttp.h> #include <C_CkHttpResponse.h> #include <C_CkHttpRequest.h> #include <C_CkStringBuilder.h> void ChilkatSample(void) { BOOL success; HCkHttp http; const char *strXml; HCkHttpResponse resp; HCkHttpRequest req; HCkStringBuilder sbUrl; const char *strResponse; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttp_Create(); strXml = "<pets><lizard>Pip</lizard><dog>Fido</dog></pets>"; // We can log the exact HTTP requests/responses to a session log file. CkHttp_putSessionLogFilename(http,"qa_output/sessionLog.txt"); // Send a POST w/ content-type of "application/xml" CkHttp_SetRequestHeader(http,"Content-Type","application/xml"); // Note: This example is only interested in examining (via the session log) // the HTTP requests that are sent. We're just sending the post to chilkatsoft.com // even though it's not an endpoint designed to handle the POST. We don't care about // the response, even if it's an error response status code.. resp = CkHttp_PostXml(http,"https://www.chilkatsoft.com/",strXml,"utf-8"); if (CkHttp_getLastMethodSuccess(http) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); return; } CkHttpResponse_Dispose(resp); // This is the HTTP request that is sent. // You'll notice the body of the request is the XML document itself. // POST / HTTP/1.1 // Content-Type: application/xml // Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 // Connection: keep-alive // User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0 // Accept-Language: en-us,en;q=0.5 // Accept-Encoding: gzip // Host: www.chilkatsoft.com // Content-Length: 48 // // <pets><lizard>Pip</lizard><dog>Fido</dog></pets> // -------- // Now let's do a PostUrlEncoded... // The XML is passed in a query param that is contained in the body of the POST. req = CkHttpRequest_Create(); CkHttpRequest_AddParam(req,"theXml",strXml); resp = CkHttp_PostUrlEncoded(http,"https://www.chilkatsoft.com/",req); if (CkHttp_getLastMethodSuccess(http) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); CkHttpRequest_Dispose(req); return; } CkHttpResponse_Dispose(resp); // This is the HTTP request that is sent. // You'll notice the body of the request is composed of URL encoded query params. // POST / HTTP/1.1 // Content-Type: application/x-www-form-urlencoded // Host: www.chilkatsoft.com // Content-Length: 85 // // theXml=%3Cpets%3E%3Clizard%3EPip%3C%2Flizard%3E%3Cdog%3EFido%3C%2Fdog%3E%3C%2Fpets%3E // // -------- // Let's try one more thing... // If the query params are not too large, they can be passed in the URL (which means the query params are passed // in the HTTP start line. This is what happens when a URL w/ query params are pasted in a browser. // The HTTP verb is "GET" instead of "POST". sbUrl = CkStringBuilder_Create(); CkStringBuilder_Append(sbUrl,"https://www.chilkatsoft.com/?"); CkStringBuilder_Append(sbUrl,CkHttpRequest_getUrlEncodedParams(req)); printf("URL with query params: %s\n",CkStringBuilder_getAsString(sbUrl)); strResponse = CkHttp_quickGetStr(http,CkStringBuilder_getAsString(sbUrl)); // The URL with query params is: https://www.chilkatsoft.com/?theXml=%3Cpets%3E%3Clizard%3EPip%3C%2Flizard%3E%3Cdog%3EFido%3C%2Fdog%3E%3C%2Fpets%3E // The HTTP request looks like this. You can see there is no request body, and the query params // are in the path part of the start line. // GET /?theXml=%3Cpets%3E%3Clizard%3EPip%3C%2Flizard%3E%3Cdog%3EFido%3C%2Fdog%3E%3C%2Fpets%3E HTTP/1.1 // Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 // Connection: keep-alive // User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0 // Accept-Language: en-us,en;q=0.5 // Accept-Encoding: gzip // Host: www.chilkatsoft.com CkHttp_Dispose(http); CkHttpRequest_Dispose(req); CkStringBuilder_Dispose(sbUrl); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.