[EMAIL PROTECTED] wrote: > When I try and do something > similar through HttpClient the connection is made and it then attempts the > buffer the entire stream.
HttpClient 3.x will only buffer the stream if you call getResponseBody() or getResponseBodyAsString(). > As a result the head.getResponseBodyAsStream() is Why "head" as the name? A HEAD method execution will never return a response body. Consider providing a more detailed description of what you are doing, and/or log output: http://jakarta.apache.org/commons/httpclient/logging.html hope that helps, Roland --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
