PowerBuilder
PowerBuilder
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 PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_Resp
oleobject loo_Sb
oleobject loo_Xml
integer li_BAutoTrim
li_Success = 0
// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.
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_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")
li_Success = loo_Http.HttpNoBody("GET","https://www.chilkatsoft.com/hamlet.xml",loo_Resp)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Resp
return
end if
loo_Sb = create oleobject
li_rc = loo_Sb.ConnectToNewObject("Chilkat.StringBuilder")
// Copy the response body to sb.
li_Success = loo_Resp.GetBodySb(loo_Sb)
loo_Xml = create oleobject
li_rc = loo_Xml.ConnectToNewObject("Chilkat.Xml")
// Load the XML from the sb.
li_BAutoTrim = 0
li_Success = loo_Xml.LoadSb(loo_Sb,li_BAutoTrim)
Write-Debug "The response body was " + string(loo_Sb.Length) + " characters in length."
Write-Debug "Success."
// The output is:
//
// The response body was 279658 characters in length.
// Success.
destroy loo_Http
destroy loo_Resp
destroy loo_Sb
destroy loo_Xml