HTTP

HTTP is the underlying protocol of the World Wide Web. It enables us to interconnect and access many different types of documents such as text and graphics and sound, etc. that can reside on any computer on the Internet.

HTTP is a Client/Server protocol: functioning of the WWW is divided between two groups of applications: Web Servers, and Web Clients (often Browsers.)

Web Browsers are the user interface to the Web. They allow users to request any document on the Web, and they handle displaying of these documents. The most common type of document is the HTML text file. Pictures, sound, video, applications, and other file formats are also found on the Web.

The program that accepts browser requests, and delivers the data is called a Web Server.

Each communication between a Web browser and a Web server (an HTTP transaction)consists of a Request and a Response.

A Request is always initiated by the browser. The Server just waits for the browser to connect. In the request message, the browser asks for a specific document. The Name of this document can be typed in by the user. E.g.,

    http://cs.wpi.edu/~kal

or it can be embedded in HTML document tags. E.g.,

    <a href="http://cs.wpi.edu/~kal">KAL's Home Page
    <img srcimages/www.gif">
    <form action="http://cs.wpi.edu/cgi-bin/kal/hw.pl"> </form>

The Browser will strip the server network name, and put the file name in the request message. Besides the file name, the Request can contain data from the HTML form, or other parameters.

When it receives the Request, the server will check if the requested file exists. If it does, the server checks if it is a CGI program. If the file is a CGI script, the server will run it, and pass its output to the browser. If it is not a CGI script, the complete file will be sent to browser in the response message.

On the client side, after it receives the response, the browser displays the document according to document type.


Send questions and comments to: Karen Lemone