Sample code for 30+ languages & platforms
Delphi DLL

How to Avoid Large Strings in HTTP Responses

See more HTTP Examples

In 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.

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, StringBuilder, Xml, HttpResponse;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
http: HCkHttp;
resp: HCkHttpResponse;
sb: HCkStringBuilder;
xml: HCkXml;
bAutoTrim: Boolean;

begin
success := False;

// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_Create();

resp := CkHttpResponse_Create();
success := CkHttp_HttpNoBody(http,'GET','https://www.chilkatsoft.com/hamlet.xml',resp);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

sb := CkStringBuilder_Create();
// Copy the response body to sb.
success := CkHttpResponse_GetBodySb(resp,sb);

xml := CkXml_Create();
// Load the XML from the sb.
bAutoTrim := False;
success := CkXml_LoadSb(xml,sb,bAutoTrim);

Memo1.Lines.Add('The response body was ' + IntToStr(CkStringBuilder_getLength(sb)) + ' characters in length.');
Memo1.Lines.Add('Success.');

// The output is:
// 
// 	The response body was 279658 characters in length.
// 	Success.

CkHttp_Dispose(http);
CkHttpResponse_Dispose(resp);
CkStringBuilder_Dispose(sb);
CkXml_Dispose(xml);

end;