synchronized public RequestHandler createRequestHandler(
ConnectionManager manager,
Socket socket )
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 );