You are on page 1of 14

CS 210

Computer Networks

application
transport
network
data link
physical

Application Layer Overview & HTTP


Adapted from “Computer Networking – a Top-Down Approach”
© 1996-2012 by J.F Kurose and K.W. Ross, All Rights Reserved

Questions
• What are the three major application
paradigms?
– Client-server, p2p, hybrid
• What is an application layer protocol?
Examples?
• What transport characteristics does a
network application need?
• What are the two transport services a
Internet application can use ?
• What/How of HTTP?

1
Application Paradigms
Common structure of network applications
• client-server
• peer-to-peer (P2P)
• hybrid of client-server and P2P

Client-Server Paradigm
server:
• always-on host
• permanent IP address
• data centers for scaling

clients:
• send requests to server
client/server • may be intermittently
connected
• may have dynamic IP
addresses
• do not communicate directly
with each other
4

2
P2P Paradigm
• no always-on server peer-peer
• arbitrary end systems
directly communicate
• peers request service from
other peers, provide service
in return to other peers
– self scalability – new
peers bring new service
capacity, as well as new
service demands
• peers are intermittently
connected and change IP
addresses
– complex management
5

Hybrid of Client-server and P2P


Skype
– voice-over-IP P2P application
– centralized server: finding address of remote party:
– client-client connection: direct (not through server)
Instant messaging
– chatting between two users is P2P
– centralized service: client presence detection/location
▪ user registers its IP address with central server when it
comes online
▪ user contacts central server to find IP addresses of
buddies
P2P IPTV
– Support both live streaming and Video-on-Demand (VOD)
6

3
IPTV Distribution

Chen et. al., “When is P2P Technology Beneficial for IPTV Services?”,
NOSSDAV’07 Urbana, Illinois USA
7

Application Layer Protocol


defines open protocols:
• types of messages exchanged, • defined in RFCs
– e.g., request, response
• allows for interoperability
• message syntax:
• e.g., HTTP, SMTP
– what fields in messages &
how fields are delineated proprietary protocols:
• message semantics • e.g., Skype
– meaning of information in
fields
• rules for when and how processes
send & respond to messages

at the application layer

4
What Transport Characteristics does a
Network Application Need?
loss tolerance throughput
❖ some apps (e.g., file transfer, ❖ some apps (e.g.,
web transactions) require multimedia) require
100% reliable data transfer minimum amount of
❖ other apps (e.g., audio) can throughput to be
tolerate some loss “effective”
❖ other apps (“elastic apps”)
make use of whatever
timing throughput they get
❖ some apps (e.g., Internet
telephony, interactive
security
games) require low delay
❖ confidentiality, data
to be “effective”
integrity, etc… may be
needed
9

Application Layer
Transport Service Requirements
application data loss throughput time sensitive

file transfer no loss elastic no


e-mail no loss elastic no
Web documents no loss elastic no
real-time audio/video audio: 5kbps-
loss-tolerant yes, 100’s
1Mbps msec
stored audio/video loss-tolerant video:10kbps-
interactive games loss-tolerant 5Mbps yes, few secs
text messaging no loss same as above yes, 100’s
few kbps up msec
elastic yes and no
10

10

5
Internet Transport Protocols Services
TCP service: UDP service:
• reliable transport between • unreliable data transfer
sending and receiving between sending and
process receiving process
• flow control: sender won’t • does not provide:
overwhelm receiver
reliability, flow control,
• congestion control: throttle congestion control,
sender when network
overloaded timing, throughput
• does not provide: timing, guarantee, security, or
minimum throughput connection setup
guarantee, security
• connection-oriented: setup Q: why bother? Why is
required between client and there a UDP service?
server processes

11

11

Internet Applications and Transport


Protocols
application underlying
application layer protocol transport protocol

e-mail SMTP [RFC 2821] TCP


remote terminal access Telnet [RFC 854] TCP
Web HTTP [RFC 2616] TCP
file transfer FTP [RFC 959] TCP
streaming multimedia HTTP (e.g., YouTube), TCP or UDP
RTP [RFC 1889]
Internet telephony SIP, RTP, proprietary TCP or UDP (signaling)
(e.g., Skype) UDP (media)

12

12

6
Protocol for Web Surfing: HTTP
(Hyper-Text Transfer Protocol)
First, a review…
• web page consists of objects
• object can be HTML file, JPEG image, Java applet,
audio file,…
• web page consists of base HTML-file which
includes several referenced objects
• each object is addressable by a URL, e.g.,

www.someschool.edu/someDept/pic.gif

host name path name

13

13

HTTP Overview
HTTP: hypertext transfer
protocol
• Web’s application layer
protocol PC running
Firefox browser
• client/server model
– client: browser that
requests, receives,
(using HTTP protocol) server
and “displays” Web running
objects Apache Web
– server: Web server server
sends (using HTTP
protocol) objects in iphone running
response to requests Safari browser

14

14

7
HTTP Overview – cont’d
HTTP uses TCP: HTTP is “stateless”
• client initiates TCP • server maintains no
connection (creates socket) information about
to server, port 80 past client requests
• server accepts TCP
connection from client aside
protocols that maintain
• HTTP messages (application- “state” are complex!
layer protocol messages) ❖ past history (state) must
exchanged between
browser (HTTP client) and be maintained
❖ if server/client crashes,
Web server (HTTP server)
their views of “state”
• TCP connection closed may be inconsistent,
must be reconciled

15

15

HTTP Connections
non-persistent HTTP persistent HTTP
• at most one object • multiple objects can be
sent over TCP sent over single TCP
connection connection between
– connection then client and server
closed
• downloading multiple
objects required
multiple connections

16

16

8
Non-persistent HTTP
(contains text,
suppose user enters URL:
references to 10
www.someSchool.edu/someDepartment/home.index
jpeg images)
1a. HTTP client initiates TCP
connection to HTTP server
(process) at 1b. HTTP server at host
www.someSchool.edu on port 80 www.someSchool.edu waiting
for TCP connection at port 80.
“accepts” connection, notifying
2. HTTP client sends HTTP request client
message (containing URL) into
TCP connection socket. 3. HTTP server receives request
Message indicates that client message, forms response
wants object message containing requested
someDepartment/home.index object, and sends message into
its socket
time
17

17

Non-persistent HTTP – cont’d


4. HTTP server closes TCP
connection.

5. HTTP client receives response


message containing html file,
displays html. Parsing html file,
finds 10 referenced jpeg objects

time
6. Steps 1-5 repeated for each of
10 jpeg objects

18

18

9
Non-persistent HTTP: Response Time
RTT (definition): time for a
small packet to travel from
client to server and back
initiate TCP
HTTP response time: connection
• one RTT to initiate TCP RTT
connection request
file
• one RTT for HTTP request
time to
and first few bytes of HTTP RTT transmit
response to return file
file
• file transmission time received
• non-persistent HTTP
response time = time time
2RTT+ file transmission
time
19

19

Persistent HTTP
non-persistent HTTP issues: persistent HTTP:
• requires 2 RTTs per object • server leaves connection
• OS overhead for each TCP open after sending
connection response
• browsers often open parallel • subsequent HTTP
TCP connections to fetch messages between same
referenced objects client/server sent over
open connection
• client sends requests as
soon as it encounters a
referenced object
• as little as one RTT for all
the referenced objects

20

20

10
HTTP Request Message
• two types of HTTP messages: request, response
• HTTP request message:
– Text format, e.g. ASCII, UTF
– human-readable! carriage return character
line-feed character
request line
(GET, POST, GET /index.html HTTP/1.1\r\n
HEAD commands) Host: www-net.cs.umass.edu\r\n
User-Agent: Firefox/3.6.10\r\n
Accept: text/html,application/xhtml+xml\r\n
header Accept-Language: en-us,en;q=0.5\r\n
lines Accept-Encoding: gzip,deflate\r\n
Accept-Charset: ISO-8859-1,utf-8;q=0.7\r\n
carriage return, Keep-Alive: 115\r\n
line feed at start Connection: keep-alive\r\n
\r\n
of line indicates
end of header lines
21

21

HTTP Request Message: General Format

method sp URL sp version cr lf request


line
header field name value cr lf
header
~~ ~~ lines

header field name value cr lf


cr lf

~~ entity body ~~ body

22

22

11
Uploading Form Input
POST method:
• web page often includes
form input
• input is uploaded to server
in entity body

URL method:
• uses GET method
• input is uploaded in URL
field of request line:
www.somesite.com/animalsearch?monkeys&banana

23

23

Method Types
HTTP/1.0: HTTP/1.1:
• GET • GET, POST, HEAD
• POST • PUT
• HEAD – uploads file in entity
– asks server to leave body to path specified
requested object out of in URL field
response • DELETE
– deletes file specified in
the URL field

24

24

12
HTTP Response Message
status line
(protocol
status code HTTP/1.1 200 OK\r\n
status phrase) Date: Sun, 26 Sep 2010 20:09:20 GMT\r\n
Server: Apache/2.0.52 (CentOS)\r\n
Last-Modified: Tue, 30 Oct 2007 17:00:02
GMT\r\n
header ETag: "17dc6-a5c-bf716880"\r\n
Accept-Ranges: bytes\r\n
lines Content-Length: 2652\r\n
Keep-Alive: timeout=10, max=100\r\n
Connection: Keep-Alive\r\n
Content-Type: text/html; charset=ISO-8859-
1\r\n
\r\n
data, e.g., data data data data data ...
requested
HTML file
25

25

HTTP Response Status Codes


❖ status code appears in 1st line in server-to-client response
message.
❖ some sample codes:
200 OK
– request succeeded, requested object later in this msg
301 Moved Permanently
– requested object moved, new location specified later in this msg
(Location:)
400 Bad Request
– request msg not understood by server
404 Not Found
– requested document not found on this server
505 HTTP Version Not Supported
26

26

13
Quote Of The Day

27

27

14

You might also like