SlideShare a Scribd company logo
1 of 14
WWW 
The World Wide Web (WWW) is a repository of 
information linked together from points all over the world. 
The WWW today is a distributed client server service, in 
which a client using a browser can access a service using a 
server. However, the service provided is distributed over 
many locations called sites, 
Each site holds one or more documents, referred to as Web 
pages. Each Web page can contain a link to other pages in 
the same site or at other sites. The pages can be retrieved 
and viewed by using browsers.
Client (Browser) 
A variety of vendors offer commercial browsers that 
interpret and display a Web document, and all use nearly 
the same architecture. Each browser usually consists of 
three parts: a controller, client protocol, and interpreters. 
The controller receives input from the keyboard or the 
mouse and uses the client programs to access the 
document. After the document has been accessed, the 
controller uses one of the interpreters to display the 
document on the screen. The client protocol can be one of 
the protocols described previously such as FTP or HTIP. 
The interpreter can be HTML, Java or JavaScript 
depending on the type of document.
Server 
The Web page is stored at the server. Each time a 
client request arrives, the corresponding document 
is sent to the client. To improve efficiency, servers 
normally store requested files in a cache in memory. 
A server can also become more efficient through 
multithreading or multiprocessing. In this case, a 
server can answer more than one request at a time.
Uniform Resource Locator 
A client that wants to access a Web page needs the 
address. To facilitate the access of documents 
distributed throughout the world, HTTP uses locators. 
The uniform resource locator (URL) is a standard for 
specifying any kind of information on the Internet. The 
URL defines four things: protocol, host computer, port 
and path.
The protocol is the client/server program used to retrieve the 
document. Many different protocols can retrieve a document; 
among them are FTP or HTTP. The most common today is HTTP. 
The host is the computer on which the information is located, 
although the name of the computer can be an alias. Web pages are 
usually stored in computers, and computers are given alias names 
that usually begin with the characters "www". This is not 
mandatory, however, as the host can be any name given to the 
computer that hosts theWeb page. 
The URL can optionally contain the port number of the server. If 
the port is included, it is inserted between the host and the path, 
and it is separated from the host by a colon. 
Path is the pathname of the file where the information is located.
WEB DOCUMENTS 
The documents in the WWW can be grouped into three broad 
categories: static, dynamic and active. The category is based 
on the time at which the contents of the document are 
determined. 
Static Documents 
Static documents are fixed-content documents that are created 
and stored in a server. The client can get only a copy of the 
document. In other words, the contents of the file are 
determined when the file is created, not when it is used. Of 
course, the contents in the server can be changed, but the user 
cannot change them. When a client accesses the document, a 
copy of the document is sent. The user can then use a 
browsing program to display the document
Dynamic Documents 
A dynamic document is created by a Web server whenever a 
browser requests the document. When a request arrives, the 
Web server runs an application program or a script that creates 
the dynamic document. The server returns the output of the 
program or script as a response to the browser that requested 
the document. Because a fresh document is created for each 
request, the contents of a dynamic document can vary from 
one request to another. A very simple example of a dynamic 
document is the retrieval of the time and date from a server. 
Time and date are kinds of information that are dynamic in 
that they change from moment to moment. The client can ask 
the server to run a program such as the date program in UNIX 
and send the result of the program to the client.
Active Documents 
For many applications, we need a program or a script to 
be run at the client site. These are called active 
documents. For example, suppose we want to run a 
program that creates animated graphics on the screen or a 
program that interacts with the user. The program 
definitely needs to be run at the client site where the 
animation or interaction takes place. When a browser 
requests an active document, the server sends a copy of 
the document or a script. The document is then run at the 
client (browser) site. 
One way to create an active document is to use Java 
applets
HTTP 
The Hypertext Transfer Protocol (HTTP) is a protocol 
used mainly to access data on the World Wide Web. HTTP 
functions as a combination of FTP and SMTP. It is similar 
to FTP because it transfers files and uses the services of 
TCP. However, it is much simpler than FTP because it 
uses only one TCP connection. There is no separate 
control connection; only data are transferred between the 
client and the server. 
HTTP is like SMTP because the data transferred between 
the client and the server look like SMTP messages. In 
addition, the format of the messages is controlled by 
MIME-like headers.
Unlike SMTP, the HTTP messages are not destined to be 
read by humans; they are read and interpreted by the 
HTTP server and HTTP client (browser). 
SMTP messages are stored and forwarded, but HTTP 
messages are delivered immediately. 
The commands from the client to the server are embedded 
in a request message. 
The contents of the requested file or other information are 
embedded in a response message. HTTP uses the services 
of TCP on well-known port 80.
Persistent Versus Nonpersistent Connection 
HTTP prior to version 1.1 specified a nonpersistent 
connection, while a persistent connection is the default in 
version 1.1. 
Nonpersistent Connection 
In a nonpersistent connection, one TCP connection is made 
for each request/response. 
The following lists the steps in this strategy: 
1. The client opens a TCP connection and sends a request. 
2. The server sends the response and closes the connection. 
3. The client reads the data until it encounters an end-of-file 
marker; it then closes the connection.
In this strategy, for N different pictures in different files, 
the connection must be opened and closed N times. The 
nonpersistent strategy imposes high overhead on the server 
because the server needs N different buffers and requires a 
slow start procedure each time a connection is opened. 
Persistent Connection 
HTTP version 1.1 specifies a persistent connection by 
default. In a persistent connection, the server leaves the 
connection open for more requests after sending a 
response. The server can close the connection at the 
request of a client or if a time-out has been reached.
The sender usually sends the length of the data with each 
response. However, there are some occasions when the 
sender does not know the length of the data. This is the 
case when a document is created dynamically or actively. 
In these cases, the server informs the client that the length 
is not known and closes the connection after sending the 
data so the client knows that the end of the data has been 
reached.
Proxy Server 
HTTP supports proxy servers. A proxy server is a 
computer that keeps copies of responses to recent 
requests. The HTTP client sends a request to the proxy 
server. The proxy server checks its cache. If the 
response is not stored in the cache, the proxy server 
sends the request to the corresponding server. Incoming 
responses are sent to the proxy server and stored for 
future requests from other clients. The proxy server 
reduces the load on the original server, decreases traffic, 
and improves latency. However, to use the proxy server, 
the client must be configured to access the proxy instead 
of the target server.

More Related Content

What's hot

Http request&response by Vignesh 15 MAR 2014
Http request&response by Vignesh 15 MAR 2014Http request&response by Vignesh 15 MAR 2014
Http request&response by Vignesh 15 MAR 2014Navaneethan Naveen
 
Hypertext Transfer Protocol
Hypertext Transfer ProtocolHypertext Transfer Protocol
Hypertext Transfer ProtocolRajan Pandey
 
Http and its Applications
Http and its ApplicationsHttp and its Applications
Http and its ApplicationsNayan Dagliya
 
Hypertex transfer protocol
Hypertex transfer protocolHypertex transfer protocol
Hypertex transfer protocolwanangwa234
 
Web Services 2009
Web Services 2009Web Services 2009
Web Services 2009Cathie101
 
ip1clientserver model
 ip1clientserver model ip1clientserver model
ip1clientserver modelmonikadeshmane
 
HTTP fundamentals for developers
HTTP fundamentals for developersHTTP fundamentals for developers
HTTP fundamentals for developersMario Cardinal
 
Hypertext transfer protocol (http)
Hypertext transfer protocol (http)Hypertext transfer protocol (http)
Hypertext transfer protocol (http)johnny19910916
 
Http request and http response
Http request and http responseHttp request and http response
Http request and http responseNuha Noor
 
Lec 7(HTTP Protocol)
Lec 7(HTTP Protocol)Lec 7(HTTP Protocol)
Lec 7(HTTP Protocol)maamir farooq
 
Application layer protocols
Application layer protocolsApplication layer protocols
Application layer protocolsFabMinds
 

What's hot (20)

HTTP & WWW
HTTP & WWWHTTP & WWW
HTTP & WWW
 
Http request&response by Vignesh 15 MAR 2014
Http request&response by Vignesh 15 MAR 2014Http request&response by Vignesh 15 MAR 2014
Http request&response by Vignesh 15 MAR 2014
 
Hypertext Transfer Protocol
Hypertext Transfer ProtocolHypertext Transfer Protocol
Hypertext Transfer Protocol
 
Http and its Applications
Http and its ApplicationsHttp and its Applications
Http and its Applications
 
The HTTP and Web
The HTTP and Web The HTTP and Web
The HTTP and Web
 
Hypertex transfer protocol
Hypertex transfer protocolHypertex transfer protocol
Hypertex transfer protocol
 
Web Services 2009
Web Services 2009Web Services 2009
Web Services 2009
 
ip1clientserver model
 ip1clientserver model ip1clientserver model
ip1clientserver model
 
HTTP
HTTPHTTP
HTTP
 
HTTP
HTTPHTTP
HTTP
 
Www and http
Www and httpWww and http
Www and http
 
HTTP & HTML & Web
HTTP & HTML & WebHTTP & HTML & Web
HTTP & HTML & Web
 
HTTP fundamentals for developers
HTTP fundamentals for developersHTTP fundamentals for developers
HTTP fundamentals for developers
 
Hypertext transfer protocol (http)
Hypertext transfer protocol (http)Hypertext transfer protocol (http)
Hypertext transfer protocol (http)
 
Http request and http response
Http request and http responseHttp request and http response
Http request and http response
 
Web technology Unit-I Part D - message format
Web technology Unit-I  Part D - message formatWeb technology Unit-I  Part D - message format
Web technology Unit-I Part D - message format
 
Http headers
Http headersHttp headers
Http headers
 
Lec 7(HTTP Protocol)
Lec 7(HTTP Protocol)Lec 7(HTTP Protocol)
Lec 7(HTTP Protocol)
 
Webbasics
WebbasicsWebbasics
Webbasics
 
Application layer protocols
Application layer protocolsApplication layer protocols
Application layer protocols
 

Similar to Www and http

Distributed web based systems
Distributed web based systemsDistributed web based systems
Distributed web based systemsReza Gh
 
Web Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdfWeb Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdfRaghunathan52
 
Web Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdfWeb Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdfRaghunathan52
 
Server Side Programming
Server Side ProgrammingServer Side Programming
Server Side ProgrammingMilan Thapa
 
Web Programming HTML.pptx
Web Programming HTML.pptxWeb Programming HTML.pptx
Web Programming HTML.pptxMarwaAnany1
 
Lecture 1 Introduction to Web Development.pptx
Lecture 1 Introduction to Web Development.pptxLecture 1 Introduction to Web Development.pptx
Lecture 1 Introduction to Web Development.pptxKevi20
 
Web Services 2009
Web Services 2009Web Services 2009
Web Services 2009Cathie101
 
computer network introduction. psc notes . Assisant professor in cse.
computer network introduction. psc notes . Assisant professor in cse.computer network introduction. psc notes . Assisant professor in cse.
computer network introduction. psc notes . Assisant professor in cse.bushraphd2022
 
Client server relation
Client server relationClient server relation
Client server relationPoojaWalia6
 
Group20 Dynamic Networks
Group20 Dynamic NetworksGroup20 Dynamic Networks
Group20 Dynamic Networkshariprasadnr
 

Similar to Www and http (20)

CN UNIT V.pptx
CN UNIT V.pptxCN UNIT V.pptx
CN UNIT V.pptx
 
Http_Protocol.pptx
Http_Protocol.pptxHttp_Protocol.pptx
Http_Protocol.pptx
 
Application layer protocols
Application layer protocolsApplication layer protocols
Application layer protocols
 
Distributed web based systems
Distributed web based systemsDistributed web based systems
Distributed web based systems
 
Web Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdfWeb Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdf
 
Web Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdfWeb Technologies Notes - TutorialsDuniya.pdf
Web Technologies Notes - TutorialsDuniya.pdf
 
Server Side Programming
Server Side ProgrammingServer Side Programming
Server Side Programming
 
Web Programming HTML.pptx
Web Programming HTML.pptxWeb Programming HTML.pptx
Web Programming HTML.pptx
 
Lecture 1 Introduction to Web Development.pptx
Lecture 1 Introduction to Web Development.pptxLecture 1 Introduction to Web Development.pptx
Lecture 1 Introduction to Web Development.pptx
 
Web Services 2009
Web Services 2009Web Services 2009
Web Services 2009
 
computer network introduction. psc notes . Assisant professor in cse.
computer network introduction. psc notes . Assisant professor in cse.computer network introduction. psc notes . Assisant professor in cse.
computer network introduction. psc notes . Assisant professor in cse.
 
Client server relation
Client server relationClient server relation
Client server relation
 
WP Chap 1 & 2.pptx
WP Chap 1 & 2.pptxWP Chap 1 & 2.pptx
WP Chap 1 & 2.pptx
 
Application layer
Application layerApplication layer
Application layer
 
Group20 Dynamic Networks
Group20 Dynamic NetworksGroup20 Dynamic Networks
Group20 Dynamic Networks
 
application layer
application layerapplication layer
application layer
 
Internet
InternetInternet
Internet
 
www and http services
www and http serviceswww and http services
www and http services
 
Web server
Web serverWeb server
Web server
 
0130225347
01302253470130225347
0130225347
 

More from Nitesh Singh

Risk taking and emotions
Risk taking and emotionsRisk taking and emotions
Risk taking and emotionsNitesh Singh
 
Project report RAILWAY TICKET RESERVATION SYSTEM SAD
Project report RAILWAY TICKET RESERVATION SYSTEM SADProject report RAILWAY TICKET RESERVATION SYSTEM SAD
Project report RAILWAY TICKET RESERVATION SYSTEM SADNitesh Singh
 
The real comedy behind comedy
The real comedy behind comedyThe real comedy behind comedy
The real comedy behind comedyNitesh Singh
 
Project report Rs Dry celaners
Project report Rs Dry celaners Project report Rs Dry celaners
Project report Rs Dry celaners Nitesh Singh
 
Routing protocols-network-layer
Routing protocols-network-layerRouting protocols-network-layer
Routing protocols-network-layerNitesh Singh
 
Ta 104-topology (1)
Ta 104-topology (1)Ta 104-topology (1)
Ta 104-topology (1)Nitesh Singh
 

More from Nitesh Singh (20)

Risk taking and emotions
Risk taking and emotionsRisk taking and emotions
Risk taking and emotions
 
Project report RAILWAY TICKET RESERVATION SYSTEM SAD
Project report RAILWAY TICKET RESERVATION SYSTEM SADProject report RAILWAY TICKET RESERVATION SYSTEM SAD
Project report RAILWAY TICKET RESERVATION SYSTEM SAD
 
The real comedy behind comedy
The real comedy behind comedyThe real comedy behind comedy
The real comedy behind comedy
 
Project report Rs Dry celaners
Project report Rs Dry celaners Project report Rs Dry celaners
Project report Rs Dry celaners
 
BIG DATA ANALYSIS
BIG DATA ANALYSISBIG DATA ANALYSIS
BIG DATA ANALYSIS
 
Udp vs-tcp
Udp vs-tcpUdp vs-tcp
Udp vs-tcp
 
Routing protocols-network-layer
Routing protocols-network-layerRouting protocols-network-layer
Routing protocols-network-layer
 
Routers vs-switch
Routers vs-switchRouters vs-switch
Routers vs-switch
 
New udp
New udpNew udp
New udp
 
I pv4 format
I pv4 formatI pv4 format
I pv4 format
 
I pv4 addressing
I pv4 addressingI pv4 addressing
I pv4 addressing
 
Hub vs-switch
Hub vs-switchHub vs-switch
Hub vs-switch
 
Ftp
FtpFtp
Ftp
 
Email ftp
Email ftpEmail ftp
Email ftp
 
Transmission main
Transmission mainTransmission main
Transmission main
 
Ta 104-topology
Ta 104-topologyTa 104-topology
Ta 104-topology
 
Ta 104-topology (1)
Ta 104-topology (1)Ta 104-topology (1)
Ta 104-topology (1)
 
Ta 104-tcp
Ta 104-tcpTa 104-tcp
Ta 104-tcp
 
Ta 104-media-3
Ta 104-media-3Ta 104-media-3
Ta 104-media-3
 
Ta 104-media-2
Ta 104-media-2Ta 104-media-2
Ta 104-media-2
 

Www and http

  • 1. WWW The World Wide Web (WWW) is a repository of information linked together from points all over the world. The WWW today is a distributed client server service, in which a client using a browser can access a service using a server. However, the service provided is distributed over many locations called sites, Each site holds one or more documents, referred to as Web pages. Each Web page can contain a link to other pages in the same site or at other sites. The pages can be retrieved and viewed by using browsers.
  • 2. Client (Browser) A variety of vendors offer commercial browsers that interpret and display a Web document, and all use nearly the same architecture. Each browser usually consists of three parts: a controller, client protocol, and interpreters. The controller receives input from the keyboard or the mouse and uses the client programs to access the document. After the document has been accessed, the controller uses one of the interpreters to display the document on the screen. The client protocol can be one of the protocols described previously such as FTP or HTIP. The interpreter can be HTML, Java or JavaScript depending on the type of document.
  • 3. Server The Web page is stored at the server. Each time a client request arrives, the corresponding document is sent to the client. To improve efficiency, servers normally store requested files in a cache in memory. A server can also become more efficient through multithreading or multiprocessing. In this case, a server can answer more than one request at a time.
  • 4. Uniform Resource Locator A client that wants to access a Web page needs the address. To facilitate the access of documents distributed throughout the world, HTTP uses locators. The uniform resource locator (URL) is a standard for specifying any kind of information on the Internet. The URL defines four things: protocol, host computer, port and path.
  • 5. The protocol is the client/server program used to retrieve the document. Many different protocols can retrieve a document; among them are FTP or HTTP. The most common today is HTTP. The host is the computer on which the information is located, although the name of the computer can be an alias. Web pages are usually stored in computers, and computers are given alias names that usually begin with the characters "www". This is not mandatory, however, as the host can be any name given to the computer that hosts theWeb page. The URL can optionally contain the port number of the server. If the port is included, it is inserted between the host and the path, and it is separated from the host by a colon. Path is the pathname of the file where the information is located.
  • 6. WEB DOCUMENTS The documents in the WWW can be grouped into three broad categories: static, dynamic and active. The category is based on the time at which the contents of the document are determined. Static Documents Static documents are fixed-content documents that are created and stored in a server. The client can get only a copy of the document. In other words, the contents of the file are determined when the file is created, not when it is used. Of course, the contents in the server can be changed, but the user cannot change them. When a client accesses the document, a copy of the document is sent. The user can then use a browsing program to display the document
  • 7. Dynamic Documents A dynamic document is created by a Web server whenever a browser requests the document. When a request arrives, the Web server runs an application program or a script that creates the dynamic document. The server returns the output of the program or script as a response to the browser that requested the document. Because a fresh document is created for each request, the contents of a dynamic document can vary from one request to another. A very simple example of a dynamic document is the retrieval of the time and date from a server. Time and date are kinds of information that are dynamic in that they change from moment to moment. The client can ask the server to run a program such as the date program in UNIX and send the result of the program to the client.
  • 8. Active Documents For many applications, we need a program or a script to be run at the client site. These are called active documents. For example, suppose we want to run a program that creates animated graphics on the screen or a program that interacts with the user. The program definitely needs to be run at the client site where the animation or interaction takes place. When a browser requests an active document, the server sends a copy of the document or a script. The document is then run at the client (browser) site. One way to create an active document is to use Java applets
  • 9. HTTP The Hypertext Transfer Protocol (HTTP) is a protocol used mainly to access data on the World Wide Web. HTTP functions as a combination of FTP and SMTP. It is similar to FTP because it transfers files and uses the services of TCP. However, it is much simpler than FTP because it uses only one TCP connection. There is no separate control connection; only data are transferred between the client and the server. HTTP is like SMTP because the data transferred between the client and the server look like SMTP messages. In addition, the format of the messages is controlled by MIME-like headers.
  • 10. Unlike SMTP, the HTTP messages are not destined to be read by humans; they are read and interpreted by the HTTP server and HTTP client (browser). SMTP messages are stored and forwarded, but HTTP messages are delivered immediately. The commands from the client to the server are embedded in a request message. The contents of the requested file or other information are embedded in a response message. HTTP uses the services of TCP on well-known port 80.
  • 11. Persistent Versus Nonpersistent Connection HTTP prior to version 1.1 specified a nonpersistent connection, while a persistent connection is the default in version 1.1. Nonpersistent Connection In a nonpersistent connection, one TCP connection is made for each request/response. The following lists the steps in this strategy: 1. The client opens a TCP connection and sends a request. 2. The server sends the response and closes the connection. 3. The client reads the data until it encounters an end-of-file marker; it then closes the connection.
  • 12. In this strategy, for N different pictures in different files, the connection must be opened and closed N times. The nonpersistent strategy imposes high overhead on the server because the server needs N different buffers and requires a slow start procedure each time a connection is opened. Persistent Connection HTTP version 1.1 specifies a persistent connection by default. In a persistent connection, the server leaves the connection open for more requests after sending a response. The server can close the connection at the request of a client or if a time-out has been reached.
  • 13. The sender usually sends the length of the data with each response. However, there are some occasions when the sender does not know the length of the data. This is the case when a document is created dynamically or actively. In these cases, the server informs the client that the length is not known and closes the connection after sending the data so the client knows that the end of the data has been reached.
  • 14. Proxy Server HTTP supports proxy servers. A proxy server is a computer that keeps copies of responses to recent requests. The HTTP client sends a request to the proxy server. The proxy server checks its cache. If the response is not stored in the cache, the proxy server sends the request to the corresponding server. Incoming responses are sent to the proxy server and stored for future requests from other clients. The proxy server reduces the load on the original server, decreases traffic, and improves latency. However, to use the proxy server, the client must be configured to access the proxy instead of the target server.