Hi all
I have a HttpResponse with about 150'000 bytes. But if I use
the string "result" does only hold 4000 bytes and the rest is truncated.
Any idea, how I can access the whole HttpResponse in a string?
thanks a lot in advance
I have a HttpResponse with about 150'000 bytes. But if I use
Log(Response.ContentLength)
result = Response.GetString("UTF8")
Log(Response)
Log(result & " " & result.Length)
result = Response.GetString("UTF8")
Log(Response)
Log(result & " " & result.Length)
the string "result" does only hold 4000 bytes and the rest is truncated.
Any idea, how I can access the whole HttpResponse in a string?
thanks a lot in advance