return null;
}
// First, do we have chunked encoding:
if ( hasTransferEncoding("chunked") ) {
definesInput = true;
input = new ChunkedInputStream(observer, parser.getInputStream());
return input;
}
// Find out if there is a content length
int len = getContentLength();
if ( len >= 0 ) {