outstream = new ChunkedOutputStream(outstream);
}
if (this.requestContentLength >= 0) {
// don't need a watcher here - we're reading from something local,
// not server-side.
instream = new ContentLengthInputStream(instream, this.requestContentLength);
}
byte[] tmp = new byte[4096];
int total = 0;
int i = 0;