throws Exception
{
LineInputStream input = new LineInputStream(socket.getInputStream());
// The first thing is to read the header from the socket.
HttpHeader header = readHeader(input);
// HttpHeader header = readHeader( reader );
// Now parse the content, only reading as much as contentLength
InputStream contentInput;