That means your code works as it should.
Have a look at this:
Dim Result As
InputStream
Result = Response.GetInputStream
To log you can use Result = Response.
GetString and
If you feel ok with Inputstreams maybe something like this could help
Dim Reader As TextReader
Reader.Initialize(Result, "myresponse.txt"))
Dim line As String
line = Reader.ReadLine
Do While line <> Null
Log(line)
line = Reader.ReadLine
Reader.Close
Loop
I didn't verfy this code, cause i'm outside of my office.