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) Adding Cookies to an HTTP RequestDemonstrates how to add one or more cookies to an HTTP request.
integer li_rc oleobject loo_Http oleobject loo_Req oleobject loo_Resp string ls_Domain integer li_Port integer li_Ssl string ls_Html // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 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 // The Cookie header field has this format: // Cookie: name1=value1 [; name2=value2] ... // Build an HTTP POST request: loo_Req = create oleobject // Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 li_rc = loo_Req.ConnectToNewObject("Chilkat.HttpRequest") loo_Req.SetFromUrl("http://www.chilkatsoft.com/echoPost.asp") loo_Req.HttpVerb = "POST" loo_Req.AddParam("param1","value1") loo_Req.AddParam("param2","value2") // To add cookies to any HTTP request sent by a Chilkat HTTP method // that uses an HTTP request object, add the cookies to the // request object by calling AddHeader. // Add two cookies: loo_Req.AddHeader("Cookie","user=~"mary~"; city=~"Chicago~"") // Send the HTTP POST. // (The cookies are sent as part of the HTTP header.) ls_Domain = "www.chilkatsoft.com" li_Port = 80 li_Ssl = 0 loo_Resp = loo_Http.SynchronousRequest(ls_Domain,li_Port,li_Ssl,loo_Req) if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Req return end if // Display the HTML body of the response. if loo_Resp.StatusCode = 200 then // Show the last HTTP request header sent, which should include // our cookies... Write-Debug loo_Http.LastHeader else Write-Debug "HTTP Response Status = " + string(loo_Resp.StatusCode) end if destroy loo_Resp Write-Debug "---------------------" // Some Chilkat HTTP methods do not use an HTTP request object. // For these methods, such as for QuickGetStr, cookies (or any HTTP request header) // are added by calling SetRequestHeader. loo_Http.SetRequestHeader("Cookie","user=~"mary~"; city=~"Chicago~"") ls_Html = loo_Http.QuickGetStr("http://www.w3.org/") if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText else // Show the last HTTP request header sent, which should include // our cookies... Write-Debug loo_Http.LastHeader end if destroy loo_Http destroy loo_Req |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.