Re: Extension to HTTP V1.x (was HTTP RFC)

Jared Rhine <jared@osiris.ac.hmc.edu>
Errors-To: listmaster@www0.cern.ch
Date: Mon, 16 May 1994 10:52:18 +0200
Errors-To: listmaster@www0.cern.ch
Message-id: <199405160846.BAA21577@osiris.ac.hmc.edu>
Errors-To: listmaster@www0.cern.ch
Reply-To: jared@osiris.ac.hmc.edu
Originator: www-talk@info.cern.ch
Sender: www-talk@www0.cern.ch
Precedence: bulk
From: Jared Rhine <jared@osiris.ac.hmc.edu>
To: Multiple recipients of list <www-talk@www0.cern.ch>
Subject: Re: Extension to HTTP V1.x (was HTTP RFC)
X-Listprocessor-Version: 6.0c -- ListProcessor by Anastasios Kotsikonas
Marc> The fundamental nature of request/response.  Some proposals have
Marc> involved keeping an HTTP connection open through multiple requests and
Marc> responses instead of sticking with simple request/response as an
Marc> abstract paradigm.

Scott> The reasons I would propose a method that allows for all requests to
Scott> be sent, then all responses received are:

Scott> It would encourage clients to "get their act together" before making
Scott> a connection, thus discouraging a "fetch, parse, fetch some more"
Scott> method that would cause the connection (and server instance) to stay
Scott> open any longer than necessary.

This is not always possible.  For instance, the Interpedia project basically
boils down to complicated database queries with the responses returned as
virtual HTML documents.  In many cases, it is _not possible_ for the client
to predict what its next query will be until it receives the response from
the last query.

While I understand and agree with the basic HTTP model being lightweight,
stateless, and clean, the fact is that complicated operations often require
some complexity to implement properly.  You said it yourself:

Scott> This doesn't exist yet, but could be requested in the future--let's
Scott> think ahead!

I agree!  Think ahead!  Further modifications to HTTP should include the
ability to perform multiple queries and transfers without specifying them
entirely beforehand.

I'm currently using another port to perform the database queries using an
intermediate script (ie, the client asks for something, a gateway then makes
a complicated set of queries on another port, and returns the results to the
client).  This will likely turn out pretty well, but I'm looking down the
road and thinking it would be cleaner to move some of the stuff directly
into HTTP.  For instance, the client requests some information, and gets too
much information returned.  It then wants to apply a URC (or SOAP) to the
previous query to narrow the search.

If the protocol is completely stateless (as any MIME-oriented MGET proposal
is), it will have to resend the entire query, forcing the server to do all
the processing again.  Only in a stateful protocol can this be implemented
cleanly and efficiently.