Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) How to Avoid Large Strings in HTTP ResponsesIn some programming languages/environments, returning and passing large strings is problematic for both performance and other reasons (for example, with SQL Server limitations on sizes varchar variables). One way of avoiding the need to return the actual string data, is to pass the data from one place to another via a Chilkat StringBuilder or BinData object. This example demonstrates a simple HTTP GET where the response body contains XML approximately 274K in size. The response body is loaded into the Chilkat.Xml without the XML content ever needing to leave the native code internal to Chilkat. Note: This example requires Chilkat v9.5.0.64 or greater.
' This example assumes the Chilkat HTTP API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim http As Chilkat.Http Set http = Chilkat.NewHttp Set resp = http.QuickGetObj("https://www.chilkatsoft.com/hamlet.xml") If (http.LastMethodSuccess <> True) Then Debug.Print http.LastErrorText Exit Sub End If Dim sb As Chilkat.StringBuilder Set sb = Chilkat.NewStringBuilder ' Copy the response body to sb. success = resp.GetBodySb(sb) Dim xml As Chilkat.Xml Set xml = Chilkat.NewXml ' Load the XML from the sb. bAutoTrim = False success = xml.LoadSb(sb,bAutoTrim) Debug.Print "The response body was "; sb.Length; " characters in length." Debug.Print "Success." ' The output is: ' ' The response body was 279658 characters in length. ' Success. |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.