Groups | Blog | Home
all groups > dotnet distributed apps > march 2004 >

dotnet distributed apps : HTTP Server


Jim P.
3/19/2004 7:26:37 PM
When an HTTP server receives a connection on a listener socket, does the
socket stay open while the server processes that request? Or does it close
the socket and reopen a new one to send once it has fulfilled the request?

thanks

ort NO[at]SPAM free.fr
3/20/2004 12:50:47 PM
[quoted text, click to view]

This depend on whether the HTTP client is using HTTP1.0 (connection
Not important who I am
3/25/2004 11:28:07 AM
The connection stays open while the server processes the request. The same
connection is used to receive the request and send the response.

I think what Olivier is driving at is that HTTP/1.1 allows persistent
connection (not mandatory) so that multiple requests can be piplined on one
connection. I've been developing HTTP software for nearly 10 years now and I
have never seen this done.

[quoted text, click to view]

ort NO[at]SPAM free.fr
3/26/2004 3:01:34 AM
Please see http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.1
for specifications.

[quoted text, click to view]
Not important who I am
3/31/2004 8:36:23 PM
; ) i'm familiar with the specs.

[quoted text, click to view]

AddThis Social Bookmark Button