I get this question a lot =/

But I only know how to answer it at a very high level.

From the minute a user enters a URL and hits enter, what happens on the client and server side, and how do requests/responses work? How does the server interact with CGI/interpreters?

It would be helpful too if you could direct me to a URL that has this information in detail, or if you can answer it.

When I describe this to people I always feel like theyre looking for specifics and I'm not giving enough detail.

Thanks!

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted
  1. Client initiates communication (Usually a HTTP GET request)
  2. Server receives REQUEST-HEADER and parses the URL contained within.
  3. Server does a lookup to see if any URL matches locally in a harddrive-folder. If the webserver handles virtual servers like a Microsoft IIS, then it will determin which folder to search after retrieving the "www.domain.com" part from the REQUEST header.
  4. If web-document (HTML file) is found, then Server sends this back as RESPONSE + a HTTP status code (eg. 200 saying: found, this request went well, where as 404 is "didnt find that file")
  5. Client (browser) receives RESPONSE and can now display it as it wants. If it contains a render engine, then it will search for patterns (HTML tags or whatever language) and then display it as such.

This is also called "stateless" as the server closes communication with client after the client has received everything from the reponse-stream.

Therefore the server cannot know if the client is still connected nor if its comming back later. Many servers does provide a session object using cookies or similar to track if its the same client that sends the next REQUEST and if so, allowing more "intelligent" server responses - such as seeking, transactions and logins.

link|improve this answer
enough details? – BerggreenDK Nov 5 '10 at 0:29
that was pretty awesome =] – qodeninja Nov 5 '10 at 0:29
enough? if so, please mark as answer :o) – BerggreenDK Nov 5 '10 at 0:30
well i want some detail about cgi/interpreters too =] – qodeninja Nov 5 '10 at 0:36
you mean, how it takes the querystring parametres or how it uses serverside scriptcodes/tags? – BerggreenDK Nov 5 '10 at 12:12
feedback

How does the internet work?

HTTP Made Really Easy

The Canonical Document: RFC 2616

link|improve this answer
Nice URL. haha if i would have asked "how does the internet work?" I would have been hung to dry. – qodeninja Nov 5 '10 at 0:20
1  
This page might give you an even more indepth look at HTTP. – Reese Moore Nov 5 '10 at 0:21
feedback

The client sends request headers to the server (finds the IP via DNS).

The server software (e.g. Apache) calls CGI if it needs to and prepares the response.

It sends headers back as well as the content.

link|improve this answer
Thats pretty much how I describe it lol. But I need to give a whole screen play out, this isnt enough detail =/ – qodeninja Nov 5 '10 at 0:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.