![]() |
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) Example: Http.DownloadSb methodSee more HTTP ExamplesDemonstrates theDownloadSb method.
integer li_rc integer li_Success oleobject loo_Http oleobject loo_Sb integer li_StatusCode 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 loo_Http.KeepResponseBody = 1 loo_Sb = create oleobject li_rc = loo_Sb.ConnectToNewObject("Chilkat.StringBuilder") li_Success = loo_Http.DownloadSb("https://chilkatsoft.com/testData/helloWorld.txt","utf-8",loo_Sb) li_StatusCode = loo_Http.LastStatus if li_Success = 0 then if li_StatusCode = 0 then // Unable to either send the request or get the response. Write-Debug loo_Http.LastErrorText else // We got a response, but the status code was not in the 200s Write-Debug "Response status code: " + string(li_StatusCode) // Examine the response body. Write-Debug "Response body:" Write-Debug loo_Http.LastResponseBody end if Write-Debug "Download failed." else Write-Debug "Download success, response status = " + string(li_StatusCode) Write-Debug loo_Sb.GetAsString() end if destroy loo_Http destroy loo_Sb |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.