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) REST Download Binary File to MemorySee more REST ExamplesDownload a binary file to a Chilkat BinData object.
integer li_rc oleobject loo_Rest integer li_Success string ls_PathPartOfUrl string ls_Domain integer li_BTls integer li_Port integer li_BAutoReconnect integer li_Success oleobject loo_Bd oleobject loo_SbErrorText // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Rest = create oleobject // Use "Chilkat_9_5_0.Rest" for versions of Chilkat < 10.0.0 li_rc = loo_Rest.ConnectToNewObject("Chilkat.Rest") if li_rc < 0 then destroy loo_Rest MessageBox("Error","Connecting to COM object failed") return end if // We're going to download a sample MS-Word doc file. // The URLs of our MS-Word sample documents are: // https://www.chilkatdownload.com/sample_data/sample.doc // https://www.chilkatdownload.com/sample_data/sample.docx ls_PathPartOfUrl = "/sample_data/sample.doc" ls_Domain = "chilkatdownload.com" li_BTls = 1 li_Port = 443 li_BAutoReconnect = 1 li_Success = loo_Rest.Connect(ls_Domain,li_Port,li_BTls,li_BAutoReconnect) if li_Success <> 1 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest return end if loo_Bd = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_Bd.ConnectToNewObject("Chilkat.BinData") li_Success = loo_Rest.FullRequestNoBodyBd("GET",ls_PathPartOfUrl,loo_Bd) if li_Success <> 1 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest destroy loo_Bd return end if // A 200 response is expected for actual success. // If we don't get a 200 response, then the response body was not actually // the file data, but it was text containing error information. if loo_Rest.ResponseStatusCode <> 200 then loo_SbErrorText = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbErrorText.ConnectToNewObject("Chilkat.StringBuilder") loo_SbErrorText.AppendBd(loo_Bd,"utf-8",0,0) Write-Debug loo_SbErrorText.GetAsString() Write-Debug "-- Failed." destroy loo_Rest destroy loo_Bd destroy loo_SbErrorText return end if // Save to a local file. // Change the file path based on your operating system or needs... li_Success = loo_Bd.WriteFile("c:/temp/qa_output/sample.doc") if li_Success <> 1 then Write-Debug "Failed to save to local file." destroy loo_Rest destroy loo_Bd destroy loo_SbErrorText return end if Write-Debug "REST Download of MS-Word File was successful." destroy loo_Rest destroy loo_Bd destroy loo_SbErrorText |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.