can somebody tell me what all happens behind the scenes from the time I type in a URL in the browser to the time when I get to se the page on the browser? A detailed account of the process would be of great help
|
closed as off topic by skaffman, Dominic Rodger, Jarrett Meyer, Graviton, SilentGhost Jan 19 '10 at 15:30
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
In an extremely rough and simplified sketch, assuming the simplest possible HTTP request, no proxies and IPv4 (this would work similarly for IPv6-only client, but I have yet to see such workstation):
Again, discussion of each of these points have filled countless pages; take this as a starting point. Also, there are many other things happening in parallel to this (processing typed-in address, adding page to browser history, displaying progress to user, notifying plugins and extensions, rendering the page while it's downloading, pipelining, connection tracking for keep-alive, etc.). |
||||
|
|
|
First the computer looks up the destination host. If it exists in local DNS cache, it uses that information. Otherwise, DNS querying is performed until the IP address is found. Then, your browser opens a TCP connection to the destination host and sends the request according to HTTP 1.1 (or might use HTTP 1.0, but normal browsers don't do it any more). The server looks up the required resource (if it exists) and responds using HTTP protocol, sends the data to the client (=your browser) The browser then uses HTML parser to re-create document structure which is later presented to you on screen. If it finds references to external resources, such as pictures, css files, javascript files, these are is delivered the same way as the HTML document itself. |
|||
|
|
|
Look up the specification of HTTP. Or to get started, try http://www.jmarshall.com/easy/http/ |
|||
|
|