|  | 
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
| (Classic ASP) 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 v11.0.0 or greater. 
 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% success = 0 ' This example assumes the Chilkat HTTP API to have been previously unlocked. ' See Global Unlock Sample for sample code. set http = Server.CreateObject("Chilkat.Http") set resp = Server.CreateObject("Chilkat.HttpResponse") success = http.HttpNoBody("GET","https://www.chilkatsoft.com/hamlet.xml",resp) If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>" Response.End End If set sb = Server.CreateObject("Chilkat.StringBuilder") ' Copy the response body to sb. success = resp.GetBodySb(sb) set xml = Server.CreateObject("Chilkat.Xml") ' Load the XML from the sb. bAutoTrim = 0 success = xml.LoadSb(sb,bAutoTrim) Response.Write "<pre>" & Server.HTMLEncode( "The response body was " & sb.Length & " characters in length.") & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "Success.") & "</pre>" ' The output is: ' ' The response body was 279658 characters in length. ' Success. %> </body> </html> | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.