Hello Doug,

> When I check the response the content length header is set to 12609 ( 
the
> correct value) but when I try and open the input stream in the 
EntityWrapper
> (in the writeTo method) the available() call to the input stream returns 
0.

available() tells you how much data is immediately available in a buffer
in your local JVM. It has (almost) nothing to do with how much data you
can read if you're willing to block on the read() call.

cheers,
  Roland


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to