![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Inspect HTTP Request HeaderDemonstrates the
integer li_rc integer li_Success oleobject loo_Http string ls_Url string ls_Json oleobject loo_Resp li_Success = 0 loo_Http = create oleobject li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if ls_Url = "https://chilkatsoft.com/echo_request_body.asp" ls_Json = "{~"greeting~":~"Hello World~"}" // Send a POST with the JSON in the HTTP request body. loo_Resp = create oleobject li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse") li_Success = loo_Http.HttpStr("POST",ls_Url,ls_Json,"utf-8","application/json",loo_Resp) if li_Success = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Resp return end if // Examine the HTTP request header we just sent. Write-Debug loo_Http.LastHeader // Output: // POST /echo_request_body.asp HTTP/1.1 // Host: chilkatsoft.com // Accept: */* // Accept-Encoding: gzip // Content-Type: application/json // Content-Length: 26 destroy loo_Http destroy loo_Resp |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.