introduction to Web system

H
Distributed Web-Based
Systems
Given Credit Where It is Due
• Most of the slides are from Beyhan Akporay at Bilkent
University,Turkey and Aditya Akella at University of
Wisconsin, Madison.
• Some slides are from Dijiang Huang at Arizona State
University, Marlon Pierce at Indiana University and
http://www.brics.dk/ixwt/slides.html.
• Some slides are from Stefan Saroiu at University of
Toronto and Chiyoung Seo at University of Southern
California
• I have modified and added some slides.
INTRODUCTION
• What is World Wide Web?
INTRODUCTION
 The World Wide Web (WWW) can be viewed as a huge
distributed system with millions of clients and servers for
accessing linked documents.
 Servers maintain collections of documents while clients
provide users an easy-to-use interface for presenting
and accessing those documents.
 A document is fetched from a server, transferred to a
client, and presented on the screen. To a user there is
conceptually no difference between a document stored
locally or in another part of the world.
INTRODUCTION
 Now, Web has become more than just a simple
document based system.
 With the emergence of Web services, it is becoming a
system of distributed services rather than just
documents offered to any user or machine.
 What can we get from WWW?
 Read news, listen to music and watch video;
 Buy or sell goods such as books, airline tickets;
 Make reservations on hotel room, rental car, restaurant, etc.;
 Pay bills and transfer money from one bank account to another;
 …
TRADITIONAL WEB-BASED SYSTEMS
 Many Web-based systems are still organized as simple
client-server architectures.
TRADITIONAL WEB-BASED SYSTEMS
 The core of a Web site: a process that has access to a
local file system storing documents.
TRADITIONAL WEB-BASED SYSTEMS
 How to refer to a document?
 URL (Uniform Resource Locator)?
Uniform Resource Locator
 A reference called Uniform Resource Locator (URL) is
used to refer a document.
 The DNS name of its associated server along with a file
name is specified.
 The URL also specifies the protocol for transferring the
document across the network.
 Example:
http://www.cse.unl.edu/~ylu/csce855/notes/web-
system.ppt
TRADITIONAL WEB-BASED SYSTEMS
 A client interacts with Web servers through a special
application known as browser.
 What’s the key function of a browser?
 Responsible for displaying documents.
WEB DOCUMENTS
 A Web document does not only contain text, but it can
include all kinds of dynamic features such as audio,
video, animations, etc.
 In many cases special helper applications (interpreters)
are needed, and they are integrated into the browser.
 E.g., Windows Media Player and QuickTime Player for playing
streaming content
 The variety of document types forces browser to be
extensible. As a result, plug-ins are required to follow a
standard interfaces so that they can be easily integrated
with the browsers.
MULTITIERED ARCHITECTURES
 Web documents can be built in two ways:
Static – locates and returns the object identified in the
request. Static objects include predefined HTML
pages and JPEG or GIF files. does not require web
servers to communication with any server-side
application.
Dynamic – the request is forwarded to an application
system where the reply is generated dynamically, i.e.
data is generated through a server-side program
execution.
 Although Web started as simple two-tiered client-server
architecture for static Web documents, this architecture
has been extended to support advanced type of
documents.
MULTITIERED ARCHITECTURES
 Because of the server-side processing, many Web sites
are now organized as three-tiered architectures
consisting of a Web server, an application server, and a
database server.
 User data comes from an HTML form, specifying the
program and parameters.
 Server-side scripting technologies are used to generate
dynamic content:
Microsoft: Active Server Pages (ASP.NET)
Sun: Java Server Pages (JSP)
Netscape: JavaScript
Free Software Foundation: PHP
• What is the most popular Web server software?
– By far the most popular Web server is Apache. As of
March 2007, 58% of all websites are using it.
• How to make a web site scalable?
WEB SERVER CLUSTERS
Web servers are replicated and combined with a front end
to improve performance.
WEB SERVER CLUSTERS
 The front end can be designed in two ways:
Transport-layer switch – simply passes data sent along
the TCP connection to one of the servers, depending on
some measurement of the server’s load.
Content-aware request distribution – it first inspects the
HTTP request and decides which server it should
forward that request to.
For example, if the front end always forwards requests for the
same document to the same server, the server may cache the
document resulting in better response times.
Approach that combines the efficiency of transport-layer
switch and the functionality of content-aware distribution
has been developed.
WEB SERVER CLUSTERS
 Another alternative to set up a Web server cluster is to
use round-robin DNS.
 With round-robin DNS a single domain name is
associated with multiple IP addresses.
 When resolving a host name, a browser would receive a
list of multiple addresses, each address corresponding
to a server.
 Normally, browsers choose the first address on the list,
but most DNS servers circulate the entries.
 As a result, simple distribution of requests over the
servers in the cluster is achieved.
HTTP
 All communication between clients and servers is based
on HTTP. Servers listen on port 80.
 HTTP is a simple protocol; a client sends a request to a
server and waits for a response.
 HTTP is stateless; it does not have any concept of open
connection and does not require a server to maintain
information on its clients. (Can use HTTP cookies to
store session information.)
 HTTP is based on TCP; whenever a client issues a
request to a server, it first sets up a TCP connection and
sends the message on that connection. The same
connection is used for receiving the response.
 One of the problems with the first versions of HTTP was
its inefficient use of TCP connections.
 HTTP 1.0 vs. HTTP 1.1
HTTP CONNECTIONS
 A Web document is constructed from a collection of
different files from the same server.
 In HTTP version 1.0 and older, each request to a server
required setting up a separate connection. When server
had responded, the connection was broken down. These
connections are referred as nonpersistent.
 In HTTP version 1.1, several requests and their
responses can be issued without the need for a separate
connection. These connections are referred as
persistent.
 Furthermore, a client can issue several requests in a row
without waiting for the response to the first request which
is referred as pipelining.
HTTP CONNECTIONS
(a) Using non-persistent connections. (b) Using persistent connections.
HTTP Caching
• Clients often cache documents
– Challenge: update of documents
– If-Modified-Since requests to check
• When/how often should the original be checked for
changes?
– Check every time?
– Check each session? Day? Etc?
– Use “Expires” header
• If no Expires, often use Last-Modified as estimate
22
CSC2231: Internet Systems Stefan Saroiu 2005
Benefits of Proxy Caching
• Proxy caching is the most commonly used method to
improve Web performance
– Duplicate requests to the same document served from the cache
– Hits reduce latency, network utilization, and server load
– Introduces problems:
• Misses increase latency (extra hops)
• cache consistency
Clients Proxy Cache Servers
Hits
Misses Misses
Internet
Cache Consistency
• Fresh-enough is good-enough
• One writer, many readers
– Most content changes slowly wrt # reads
• Cache consistency governed by standards
• “Expiration” based cache consistency
– Expires timestamp on each object
– Cache revalidates content beyond that time
• Why not callbacks?
Problems
• Over 50% of all HTTP objects are uncacheable – why?
• Not easily solvable
– Dynamic data  stock prices, scores, web cams
– CGI scripts  results based on passed parameters
– SSL  encrypted data is not cacheable
– Cookies  results may be based on passed data
– Hit metering  owner wants to measure # of hits for
revenue, etc.
25
CSC2231: Internet Systems Stefan Saroiu 2005
Cache Deployments
$
Web
Server
Client
Cache
Where else?
CSC2231: Internet Systems Stefan Saroiu 2005
Cache Deployments
$
$ $
$
$
$
$ Web
Server
Client
Browser
Cache
CDN Reverse
Proxy/
Accelerator
CDN
CDNCDN
Proxy
Cache
Content Distribution
– Lots of excitement?
– Akamai, Digital Island/Sandpiper, Speedera
– What is a Content Distribution Network (CDN)?
• Outsourced caching and replication services
Content Distribution
– Lots of excitement?
– Akamai, Digital Island/Sandpiper, Speedera
– What is a Content Distribution Network (CDN)?
• Outsourced caching and replication services
CSC2231: Internet Systems Stefan Saroiu 2005
Content Providers’ Advantages
• CDN provider maintains networks and servers
– Capacity management
• Sharing resources across a large number of sites
– Economy of scale
– Control of content placement and routing
• Protects content provider from unpredictable load bursts
• Communication between content provider and CDN
network is not governed by standards
– Don’t even need to use HTTP
– Can cache “uncacheable” documents
– Can deploy alternative cache consistency
– Can place requirements on content providers
CDN’s Challenges
• How to replicate content?
• Where to replicate content?
• How to find replicated content?
• How to choose among known replicas?
• How to direct clients towards replica?
Content Distribution Networks
• Replicate content on many servers
32
Figure 12-18. The general organization of a CDN as a feedback-
control system (adapted from Sivasubramanian et al., 2004b).
How Akamai Works
• Clients fetch html document from primary server
– E.g. fetch index.html from cnn.com
• “Akamaized” URLs for replicated content are
replaced in html
– E.g. <img src=“http://cnn.com/af/x.gif”> replaced with
<img
src=“http://a73.g.akamaitech.net/7/23/cnn.com/af/x.g
if”>
• Client is forced to resolve aXYZ.g.akamaitech.net
hostname 33
How Akamai Works
• Root server gives NS record for
akamaitech.net
• akamaitech.net name server returns NS
record for g.akamaitech.net
• g.akamaitech.net name server chooses server
in region
34
How Akamai Works
End-user
35
cnn.com (content provider) DNS root server
1 2 3
4
Akamai high-level
DNS server
Akamai low-level DNS
server
Nearby
matching
Akamai server
11
6
7
8
9
10
Get
index.
html
Get
/cnn.com/foo.jpg
12
Get foo.jpg
5
Akamai – Subsequent Requests
End-user
36
cnn.com (content provider) DNS root server
1 2 Akamai high-level
DNS server
Akamai low-level DNS
server
7
8
9
10
Get
index.
html
Get
/cnn.com/foo.jpg
Nearby
matching
Akamai server
What is a Web Service?
• Web Service:
“Web-based applications that dynamically interact with other
Web applications using open standards that include XML, UDDI
and SOAP”
• Service-Oriented Architecture (SOA):
“Development of applications from distributed collections of
smaller loosely coupled service providers”
“A collection of services or software agents that communicate
freely with each other”
Web Service Advantages for E-
Business
• Allow companies to reduce the cost of doing e-business,
to deploy solutions faster
– Need a common program-to-program communications model
• Allow heterogeneous applications to be integrated more
rapidly, easily and less expensively
• Facilitate deploying and providing access to business
functions over the Web
Web Services Terminology
• SOAP (Simple Object Access Protocol)
– exchanging XML messages on a network
– Like RPC, it provides a way to communicate between applications
– Unlike RPC, it communicates over HTTP
– Because HTTP is supported by all Internet browsers and servers,
SOAP can run on different operating systems, with different
technologies and programming languages
• WSDL (Web Service Description Language )
– describing interfaces of Web services
• UDDI (Universal Description, Discovery and Integration)
– managing registries of Web services
Web Service Model (1/3)
Web Service Model (2/3)
• Roles in a Web Service Architecture
– Service provider
• Owner of the service
• Platform that hosts access to the service
– Service requestor
• Business that requires certain functions to be satisfied
• Application looking for and invoking an interaction with a
service
– Service registry
• Searchable registry of service descriptions where service
providers publish their service descriptions
Web Service Model (3/3)
• Operations in a Web Service Architecture
– Publish
• Service descriptions need to be published in order for
service requestor to find them
– Find
• Service requestor queries the service registry for the
service required
– Bind
• Service requestor invokes or initiates an interaction
with the service at runtime
Fault Tolerance Challenges
 How to deal with web service replications
 How to combine Byzantine fault tolerance with
web services
 Merideth et al. “Thema: Byzantine-Fault-Tolerant
Middleware for Web-Service Applications”, 2005.
Web Security Issues
 The Web has become the visible interface of the Internet
 Many corporations now use the Web for advertising, marketing and sales
 Web servers might be easy to use but…
 Complicated to configure correctly and difficult to build without security
flaws
 They can serve as a security hole by which an adversary might access
other data and computer systems
Threats Consequences Countermeasures
Integrity Modification of Data
Trojan horses
Loss of Information
Compromise of Machine
MACs (mandatory access
control) and Hashes
Confidentiality Eavesdropping
Theft of Information
Loss of Information
Privacy Breach
Encryption
DoS Stopping
Filling up Disks and
Resources
Stopped Transactions
Authentication Impersonation
Data Forgery
Misrepresentation of User
Accept false Data
Signatures, MACs
So Where to Secure the Web?
 There are many strategies to securing the web
1. We may attempt to secure the IP Layer of the TCP/IP
Stack: this may be accomplished using IPSec, for
example.
2. We may leave IP alone and secure on top of TCP: this
may be accomplished using the Secure Sockets Layer
(SSL) or Transport Layer Security (TLS)
3. We may seek to secure specific applications by using
application-specific security solutions: for example, we
may use Secure Electronic Transaction (SET)
 The first two provide generic solutions, while the third
provides for more specialized services
A Quick Look at Securing the TCP/IP
Stack
TCP
IP/IPSEC
HTTP FTP SMTP
TCP
IP
HTTP FTP SMTP
SSL/TLS
TCP
IP
S/MIME PGP
UDP
Kerberos SMTP
SET
HTTP
At the Network Level
At the Transport Level
At the Application Level
1 sur 46

Recommandé

CS8651 Internet Programming - Basics of HTML, HTML5, CSS par
CS8651   Internet Programming - Basics of HTML, HTML5, CSSCS8651   Internet Programming - Basics of HTML, HTML5, CSS
CS8651 Internet Programming - Basics of HTML, HTML5, CSSVigneshkumar Ponnusamy
1.6K vues121 diapositives
Web Application par
Web ApplicationWeb Application
Web ApplicationSameer Poudel
2.3K vues9 diapositives
HTTP request and response par
HTTP request and responseHTTP request and response
HTTP request and responseSahil Agarwal
8K vues19 diapositives
Php Lecture Notes par
Php Lecture NotesPhp Lecture Notes
Php Lecture NotesSanthiya Grace
4.7K vues42 diapositives
Unit 1 Webtechnology par
Unit 1  WebtechnologyUnit 1  Webtechnology
Unit 1 WebtechnologyAbhishek Kesharwani
1.6K vues10 diapositives
Web crawler par
Web crawlerWeb crawler
Web crawlerpoonamkenkre
38.3K vues43 diapositives

Contenu connexe

Tendances

introduction to web technology par
introduction to web technologyintroduction to web technology
introduction to web technologyvikram singh
35.4K vues38 diapositives
Bootstrap par
BootstrapBootstrap
BootstrapJadson Santos
31.3K vues32 diapositives
CSS par
CSSCSS
CSSPeople Strategists
23.5K vues42 diapositives
Unit 1 introduction to web programming par
Unit 1 introduction to web programmingUnit 1 introduction to web programming
Unit 1 introduction to web programmingzahid7578
939 vues32 diapositives
HTML Forms par
HTML FormsHTML Forms
HTML FormsRavinder Kamboj
19K vues28 diapositives
Client Side Technologies par
Client Side TechnologiesClient Side Technologies
Client Side TechnologiesAnirban Majumdar
6.4K vues22 diapositives

Tendances(20)

introduction to web technology par vikram singh
introduction to web technologyintroduction to web technology
introduction to web technology
vikram singh35.4K vues
Unit 1 introduction to web programming par zahid7578
Unit 1 introduction to web programmingUnit 1 introduction to web programming
Unit 1 introduction to web programming
zahid7578939 vues
Lecture-1: Introduction to web engineering - course overview and grading scheme par Mubashir Ali
Lecture-1: Introduction to web engineering - course overview and grading schemeLecture-1: Introduction to web engineering - course overview and grading scheme
Lecture-1: Introduction to web engineering - course overview and grading scheme
Mubashir Ali3.8K vues
WEB I - 01 - Introduction to Web Development par Randy Connolly
WEB I - 01 - Introduction to Web DevelopmentWEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web Development
Randy Connolly22.9K vues
Introduction of Html/css/js par Knoldus Inc.
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
Knoldus Inc.22.4K vues
Learn html Basics par McSoftsis
Learn html BasicsLearn html Basics
Learn html Basics
McSoftsis31.8K vues

En vedette

Web as a Medium: Aesthetics & Design par
Web as a Medium: Aesthetics & DesignWeb as a Medium: Aesthetics & Design
Web as a Medium: Aesthetics & Designguest2d5207
1.4K vues31 diapositives
Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ... par
Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ...Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ...
Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ...Logo Design Guru
2.5K vues29 diapositives
Digital Age - Content. Production. Promotion par
Digital Age - Content. Production. PromotionDigital Age - Content. Production. Promotion
Digital Age - Content. Production. PromotionVera Chernysh
3.7K vues26 diapositives
[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6 par
[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6
[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6Rakuten Group, Inc.
21.5K vues46 diapositives
Software Requirements par
 Software Requirements Software Requirements
Software RequirementsZaman Khan
6.9K vues30 diapositives
Infrastructure Strategy Plan par
Infrastructure Strategy Plan Infrastructure Strategy Plan
Infrastructure Strategy Plan Tarry Singh
11.5K vues38 diapositives

En vedette(15)

Web as a Medium: Aesthetics & Design par guest2d5207
Web as a Medium: Aesthetics & DesignWeb as a Medium: Aesthetics & Design
Web as a Medium: Aesthetics & Design
guest2d52071.4K vues
Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ... par Logo Design Guru
Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ...Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ...
Humanizing Design: 13 Ways to Provoke Psychological Responses through Custom ...
Logo Design Guru2.5K vues
Digital Age - Content. Production. Promotion par Vera Chernysh
Digital Age - Content. Production. PromotionDigital Age - Content. Production. Promotion
Digital Age - Content. Production. Promotion
Vera Chernysh3.7K vues
[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6 par Rakuten Group, Inc.
[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6
[RakutenTechConf2013] [E-3] Financial Web System with Java EE 6
Rakuten Group, Inc.21.5K vues
Software Requirements par Zaman Khan
 Software Requirements Software Requirements
Software Requirements
Zaman Khan6.9K vues
Infrastructure Strategy Plan par Tarry Singh
Infrastructure Strategy Plan Infrastructure Strategy Plan
Infrastructure Strategy Plan
Tarry Singh11.5K vues
Enterprise solution design principles par Leo Barella
Enterprise solution design principlesEnterprise solution design principles
Enterprise solution design principles
Leo Barella3.2K vues
How to implement Electronic Records Management? par Atle Skjekkeland
How to implement Electronic Records Management?How to implement Electronic Records Management?
How to implement Electronic Records Management?
Atle Skjekkeland13.6K vues
Software Requirement Specification par Niraj Kumar
Software Requirement SpecificationSoftware Requirement Specification
Software Requirement Specification
Niraj Kumar12.6K vues
Design Principles par David Gelb
Design PrinciplesDesign Principles
Design Principles
David Gelb101.7K vues
Content Management System, Web, Social and Beyond par Danielle Brigida
Content Management System, Web, Social and BeyondContent Management System, Web, Social and Beyond
Content Management System, Web, Social and Beyond
Danielle Brigida668 vues
Introduction to Zabbix - Company, Product, Services and Use Cases par Zabbix
Introduction to Zabbix - Company, Product, Services and Use CasesIntroduction to Zabbix - Company, Product, Services and Use Cases
Introduction to Zabbix - Company, Product, Services and Use Cases
Zabbix518.8K vues
User Interface Design par JReifman
User Interface DesignUser Interface Design
User Interface Design
JReifman45.1K vues

Similaire à introduction to Web system

Distributed web based systems par
Distributed web based systemsDistributed web based systems
Distributed web based systemsReza Gh
15.5K vues45 diapositives
WP Chap 1 & 2.pptx par
WP Chap 1 & 2.pptxWP Chap 1 & 2.pptx
WP Chap 1 & 2.pptxAnkitaChauhan79
19 vues50 diapositives
Web-Server & It's Architecture.pptx par
Web-Server & It's Architecture.pptxWeb-Server & It's Architecture.pptx
Web-Server & It's Architecture.pptxAlokKumar250045
13 vues22 diapositives
Web server par
Web serverWeb server
Web serverNirav Daraniya
3.8K vues25 diapositives
Cs8591 Computer Networks - UNIT V par
Cs8591 Computer Networks - UNIT VCs8591 Computer Networks - UNIT V
Cs8591 Computer Networks - UNIT Vpkaviya
767 vues77 diapositives
05.m3 cms list-ofwebserver par
05.m3 cms list-ofwebserver05.m3 cms list-ofwebserver
05.m3 cms list-ofwebservertarensi
360 vues28 diapositives

Similaire à introduction to Web system(20)

Distributed web based systems par Reza Gh
Distributed web based systemsDistributed web based systems
Distributed web based systems
Reza Gh15.5K vues
Cs8591 Computer Networks - UNIT V par pkaviya
Cs8591 Computer Networks - UNIT VCs8591 Computer Networks - UNIT V
Cs8591 Computer Networks - UNIT V
pkaviya767 vues
05.m3 cms list-ofwebserver par tarensi
05.m3 cms list-ofwebserver05.m3 cms list-ofwebserver
05.m3 cms list-ofwebserver
tarensi360 vues
IWMW 2003: C7 Bandwidth Management Techniques: Technical And Policy Issues par IWMW
IWMW 2003: C7 Bandwidth Management Techniques: Technical And Policy IssuesIWMW 2003: C7 Bandwidth Management Techniques: Technical And Policy Issues
IWMW 2003: C7 Bandwidth Management Techniques: Technical And Policy Issues
IWMW 173 vues
21 Www Web Services par royans
21 Www Web Services21 Www Web Services
21 Www Web Services
royans4.1K vues
Web Landscape - updated in Jan 2016 par Jack Zheng
Web Landscape - updated in Jan 2016Web Landscape - updated in Jan 2016
Web Landscape - updated in Jan 2016
Jack Zheng12.4K vues
1. web technology basics par Jyoti Yadav
1. web technology basics1. web technology basics
1. web technology basics
Jyoti Yadav254 vues
Web Database par idroos7
Web DatabaseWeb Database
Web Database
idroos712.7K vues
Configuring the Apache Web Server par webhostingguy
Configuring the Apache Web ServerConfiguring the Apache Web Server
Configuring the Apache Web Server
webhostingguy4.3K vues

Plus de hashim102

Web layers par
Web layersWeb layers
Web layershashim102
729 vues16 diapositives
Holography par
HolographyHolography
Holographyhashim102
136 vues11 diapositives
Polymorphism par
PolymorphismPolymorphism
Polymorphismhashim102
99 vues16 diapositives
Bad news par
Bad newsBad news
Bad newshashim102
157 vues31 diapositives
Politicial instability in bloachistan par
Politicial instability in bloachistanPoliticial instability in bloachistan
Politicial instability in bloachistanhashim102
1.7K vues84 diapositives
Writing skills par
Writing skillsWriting skills
Writing skillshashim102
72.5K vues33 diapositives

Plus de hashim102(11)

Politicial instability in bloachistan par hashim102
Politicial instability in bloachistanPoliticial instability in bloachistan
Politicial instability in bloachistan
hashim1021.7K vues
Writing skills par hashim102
Writing skillsWriting skills
Writing skills
hashim10272.5K vues
Reading skills par hashim102
Reading skillsReading skills
Reading skills
hashim1025.6K vues
Differnce of two processors par hashim102
Differnce of two processorsDiffernce of two processors
Differnce of two processors
hashim1021.1K vues
cpu scheduling par hashim102
cpu schedulingcpu scheduling
cpu scheduling
hashim1029.9K vues
data structure par hashim102
data structuredata structure
data structure
hashim1026.1K vues

Dernier

ACTIVITY BOOK key water sports.pptx par
ACTIVITY BOOK key water sports.pptxACTIVITY BOOK key water sports.pptx
ACTIVITY BOOK key water sports.pptxMar Caston Palacio
605 vues4 diapositives
Drama KS5 Breakdown par
Drama KS5 BreakdownDrama KS5 Breakdown
Drama KS5 BreakdownWestHatch
79 vues2 diapositives
Dance KS5 Breakdown par
Dance KS5 BreakdownDance KS5 Breakdown
Dance KS5 BreakdownWestHatch
79 vues2 diapositives
2022 CAPE Merit List 2023 par
2022 CAPE Merit List 2023 2022 CAPE Merit List 2023
2022 CAPE Merit List 2023 Caribbean Examinations Council
5K vues76 diapositives
MercerJesse2.1Doc.pdf par
MercerJesse2.1Doc.pdfMercerJesse2.1Doc.pdf
MercerJesse2.1Doc.pdfjessemercerail
169 vues5 diapositives
Use of Probiotics in Aquaculture.pptx par
Use of Probiotics in Aquaculture.pptxUse of Probiotics in Aquaculture.pptx
Use of Probiotics in Aquaculture.pptxAKSHAY MANDAL
100 vues15 diapositives

Dernier(20)

Drama KS5 Breakdown par WestHatch
Drama KS5 BreakdownDrama KS5 Breakdown
Drama KS5 Breakdown
WestHatch79 vues
Dance KS5 Breakdown par WestHatch
Dance KS5 BreakdownDance KS5 Breakdown
Dance KS5 Breakdown
WestHatch79 vues
Use of Probiotics in Aquaculture.pptx par AKSHAY MANDAL
Use of Probiotics in Aquaculture.pptxUse of Probiotics in Aquaculture.pptx
Use of Probiotics in Aquaculture.pptx
AKSHAY MANDAL100 vues
Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant... par Ms. Pooja Bhandare
Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant...Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant...
Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant...
Education and Diversity.pptx par DrHafizKosar
Education and Diversity.pptxEducation and Diversity.pptx
Education and Diversity.pptx
DrHafizKosar173 vues
Narration ppt.pptx par TARIQ KHAN
Narration  ppt.pptxNarration  ppt.pptx
Narration ppt.pptx
TARIQ KHAN135 vues
Class 10 English lesson plans par TARIQ KHAN
Class 10 English  lesson plansClass 10 English  lesson plans
Class 10 English lesson plans
TARIQ KHAN288 vues
UWP OA Week Presentation (1).pptx par Jisc
UWP OA Week Presentation (1).pptxUWP OA Week Presentation (1).pptx
UWP OA Week Presentation (1).pptx
Jisc88 vues
11.28.23 Social Capital and Social Exclusion.pptx par mary850239
11.28.23 Social Capital and Social Exclusion.pptx11.28.23 Social Capital and Social Exclusion.pptx
11.28.23 Social Capital and Social Exclusion.pptx
mary850239298 vues
Create a Structure in VBNet.pptx par Breach_P
Create a Structure in VBNet.pptxCreate a Structure in VBNet.pptx
Create a Structure in VBNet.pptx
Breach_P75 vues

introduction to Web system

  • 2. Given Credit Where It is Due • Most of the slides are from Beyhan Akporay at Bilkent University,Turkey and Aditya Akella at University of Wisconsin, Madison. • Some slides are from Dijiang Huang at Arizona State University, Marlon Pierce at Indiana University and http://www.brics.dk/ixwt/slides.html. • Some slides are from Stefan Saroiu at University of Toronto and Chiyoung Seo at University of Southern California • I have modified and added some slides.
  • 3. INTRODUCTION • What is World Wide Web?
  • 4. INTRODUCTION  The World Wide Web (WWW) can be viewed as a huge distributed system with millions of clients and servers for accessing linked documents.  Servers maintain collections of documents while clients provide users an easy-to-use interface for presenting and accessing those documents.  A document is fetched from a server, transferred to a client, and presented on the screen. To a user there is conceptually no difference between a document stored locally or in another part of the world.
  • 5. INTRODUCTION  Now, Web has become more than just a simple document based system.  With the emergence of Web services, it is becoming a system of distributed services rather than just documents offered to any user or machine.  What can we get from WWW?  Read news, listen to music and watch video;  Buy or sell goods such as books, airline tickets;  Make reservations on hotel room, rental car, restaurant, etc.;  Pay bills and transfer money from one bank account to another;  …
  • 6. TRADITIONAL WEB-BASED SYSTEMS  Many Web-based systems are still organized as simple client-server architectures.
  • 7. TRADITIONAL WEB-BASED SYSTEMS  The core of a Web site: a process that has access to a local file system storing documents.
  • 8. TRADITIONAL WEB-BASED SYSTEMS  How to refer to a document?  URL (Uniform Resource Locator)?
  • 9. Uniform Resource Locator  A reference called Uniform Resource Locator (URL) is used to refer a document.  The DNS name of its associated server along with a file name is specified.  The URL also specifies the protocol for transferring the document across the network.  Example: http://www.cse.unl.edu/~ylu/csce855/notes/web- system.ppt
  • 10. TRADITIONAL WEB-BASED SYSTEMS  A client interacts with Web servers through a special application known as browser.  What’s the key function of a browser?  Responsible for displaying documents.
  • 11. WEB DOCUMENTS  A Web document does not only contain text, but it can include all kinds of dynamic features such as audio, video, animations, etc.  In many cases special helper applications (interpreters) are needed, and they are integrated into the browser.  E.g., Windows Media Player and QuickTime Player for playing streaming content  The variety of document types forces browser to be extensible. As a result, plug-ins are required to follow a standard interfaces so that they can be easily integrated with the browsers.
  • 12. MULTITIERED ARCHITECTURES  Web documents can be built in two ways: Static – locates and returns the object identified in the request. Static objects include predefined HTML pages and JPEG or GIF files. does not require web servers to communication with any server-side application. Dynamic – the request is forwarded to an application system where the reply is generated dynamically, i.e. data is generated through a server-side program execution.  Although Web started as simple two-tiered client-server architecture for static Web documents, this architecture has been extended to support advanced type of documents.
  • 13. MULTITIERED ARCHITECTURES  Because of the server-side processing, many Web sites are now organized as three-tiered architectures consisting of a Web server, an application server, and a database server.  User data comes from an HTML form, specifying the program and parameters.  Server-side scripting technologies are used to generate dynamic content: Microsoft: Active Server Pages (ASP.NET) Sun: Java Server Pages (JSP) Netscape: JavaScript Free Software Foundation: PHP
  • 14. • What is the most popular Web server software? – By far the most popular Web server is Apache. As of March 2007, 58% of all websites are using it.
  • 15. • How to make a web site scalable?
  • 16. WEB SERVER CLUSTERS Web servers are replicated and combined with a front end to improve performance.
  • 17. WEB SERVER CLUSTERS  The front end can be designed in two ways: Transport-layer switch – simply passes data sent along the TCP connection to one of the servers, depending on some measurement of the server’s load. Content-aware request distribution – it first inspects the HTTP request and decides which server it should forward that request to. For example, if the front end always forwards requests for the same document to the same server, the server may cache the document resulting in better response times. Approach that combines the efficiency of transport-layer switch and the functionality of content-aware distribution has been developed.
  • 18. WEB SERVER CLUSTERS  Another alternative to set up a Web server cluster is to use round-robin DNS.  With round-robin DNS a single domain name is associated with multiple IP addresses.  When resolving a host name, a browser would receive a list of multiple addresses, each address corresponding to a server.  Normally, browsers choose the first address on the list, but most DNS servers circulate the entries.  As a result, simple distribution of requests over the servers in the cluster is achieved.
  • 19. HTTP  All communication between clients and servers is based on HTTP. Servers listen on port 80.  HTTP is a simple protocol; a client sends a request to a server and waits for a response.  HTTP is stateless; it does not have any concept of open connection and does not require a server to maintain information on its clients. (Can use HTTP cookies to store session information.)  HTTP is based on TCP; whenever a client issues a request to a server, it first sets up a TCP connection and sends the message on that connection. The same connection is used for receiving the response.  One of the problems with the first versions of HTTP was its inefficient use of TCP connections.  HTTP 1.0 vs. HTTP 1.1
  • 20. HTTP CONNECTIONS  A Web document is constructed from a collection of different files from the same server.  In HTTP version 1.0 and older, each request to a server required setting up a separate connection. When server had responded, the connection was broken down. These connections are referred as nonpersistent.  In HTTP version 1.1, several requests and their responses can be issued without the need for a separate connection. These connections are referred as persistent.  Furthermore, a client can issue several requests in a row without waiting for the response to the first request which is referred as pipelining.
  • 21. HTTP CONNECTIONS (a) Using non-persistent connections. (b) Using persistent connections.
  • 22. HTTP Caching • Clients often cache documents – Challenge: update of documents – If-Modified-Since requests to check • When/how often should the original be checked for changes? – Check every time? – Check each session? Day? Etc? – Use “Expires” header • If no Expires, often use Last-Modified as estimate 22
  • 23. CSC2231: Internet Systems Stefan Saroiu 2005 Benefits of Proxy Caching • Proxy caching is the most commonly used method to improve Web performance – Duplicate requests to the same document served from the cache – Hits reduce latency, network utilization, and server load – Introduces problems: • Misses increase latency (extra hops) • cache consistency Clients Proxy Cache Servers Hits Misses Misses Internet
  • 24. Cache Consistency • Fresh-enough is good-enough • One writer, many readers – Most content changes slowly wrt # reads • Cache consistency governed by standards • “Expiration” based cache consistency – Expires timestamp on each object – Cache revalidates content beyond that time • Why not callbacks?
  • 25. Problems • Over 50% of all HTTP objects are uncacheable – why? • Not easily solvable – Dynamic data  stock prices, scores, web cams – CGI scripts  results based on passed parameters – SSL  encrypted data is not cacheable – Cookies  results may be based on passed data – Hit metering  owner wants to measure # of hits for revenue, etc. 25
  • 26. CSC2231: Internet Systems Stefan Saroiu 2005 Cache Deployments $ Web Server Client Cache Where else?
  • 27. CSC2231: Internet Systems Stefan Saroiu 2005 Cache Deployments $ $ $ $ $ $ $ Web Server Client Browser Cache CDN Reverse Proxy/ Accelerator CDN CDNCDN Proxy Cache
  • 28. Content Distribution – Lots of excitement? – Akamai, Digital Island/Sandpiper, Speedera – What is a Content Distribution Network (CDN)? • Outsourced caching and replication services
  • 29. Content Distribution – Lots of excitement? – Akamai, Digital Island/Sandpiper, Speedera – What is a Content Distribution Network (CDN)? • Outsourced caching and replication services
  • 30. CSC2231: Internet Systems Stefan Saroiu 2005 Content Providers’ Advantages • CDN provider maintains networks and servers – Capacity management • Sharing resources across a large number of sites – Economy of scale – Control of content placement and routing • Protects content provider from unpredictable load bursts • Communication between content provider and CDN network is not governed by standards – Don’t even need to use HTTP – Can cache “uncacheable” documents – Can deploy alternative cache consistency – Can place requirements on content providers
  • 31. CDN’s Challenges • How to replicate content? • Where to replicate content? • How to find replicated content? • How to choose among known replicas? • How to direct clients towards replica?
  • 32. Content Distribution Networks • Replicate content on many servers 32 Figure 12-18. The general organization of a CDN as a feedback- control system (adapted from Sivasubramanian et al., 2004b).
  • 33. How Akamai Works • Clients fetch html document from primary server – E.g. fetch index.html from cnn.com • “Akamaized” URLs for replicated content are replaced in html – E.g. <img src=“http://cnn.com/af/x.gif”> replaced with <img src=“http://a73.g.akamaitech.net/7/23/cnn.com/af/x.g if”> • Client is forced to resolve aXYZ.g.akamaitech.net hostname 33
  • 34. How Akamai Works • Root server gives NS record for akamaitech.net • akamaitech.net name server returns NS record for g.akamaitech.net • g.akamaitech.net name server chooses server in region 34
  • 35. How Akamai Works End-user 35 cnn.com (content provider) DNS root server 1 2 3 4 Akamai high-level DNS server Akamai low-level DNS server Nearby matching Akamai server 11 6 7 8 9 10 Get index. html Get /cnn.com/foo.jpg 12 Get foo.jpg 5
  • 36. Akamai – Subsequent Requests End-user 36 cnn.com (content provider) DNS root server 1 2 Akamai high-level DNS server Akamai low-level DNS server 7 8 9 10 Get index. html Get /cnn.com/foo.jpg Nearby matching Akamai server
  • 37. What is a Web Service? • Web Service: “Web-based applications that dynamically interact with other Web applications using open standards that include XML, UDDI and SOAP” • Service-Oriented Architecture (SOA): “Development of applications from distributed collections of smaller loosely coupled service providers” “A collection of services or software agents that communicate freely with each other”
  • 38. Web Service Advantages for E- Business • Allow companies to reduce the cost of doing e-business, to deploy solutions faster – Need a common program-to-program communications model • Allow heterogeneous applications to be integrated more rapidly, easily and less expensively • Facilitate deploying and providing access to business functions over the Web
  • 39. Web Services Terminology • SOAP (Simple Object Access Protocol) – exchanging XML messages on a network – Like RPC, it provides a way to communicate between applications – Unlike RPC, it communicates over HTTP – Because HTTP is supported by all Internet browsers and servers, SOAP can run on different operating systems, with different technologies and programming languages • WSDL (Web Service Description Language ) – describing interfaces of Web services • UDDI (Universal Description, Discovery and Integration) – managing registries of Web services
  • 41. Web Service Model (2/3) • Roles in a Web Service Architecture – Service provider • Owner of the service • Platform that hosts access to the service – Service requestor • Business that requires certain functions to be satisfied • Application looking for and invoking an interaction with a service – Service registry • Searchable registry of service descriptions where service providers publish their service descriptions
  • 42. Web Service Model (3/3) • Operations in a Web Service Architecture – Publish • Service descriptions need to be published in order for service requestor to find them – Find • Service requestor queries the service registry for the service required – Bind • Service requestor invokes or initiates an interaction with the service at runtime
  • 43. Fault Tolerance Challenges  How to deal with web service replications  How to combine Byzantine fault tolerance with web services  Merideth et al. “Thema: Byzantine-Fault-Tolerant Middleware for Web-Service Applications”, 2005.
  • 44. Web Security Issues  The Web has become the visible interface of the Internet  Many corporations now use the Web for advertising, marketing and sales  Web servers might be easy to use but…  Complicated to configure correctly and difficult to build without security flaws  They can serve as a security hole by which an adversary might access other data and computer systems Threats Consequences Countermeasures Integrity Modification of Data Trojan horses Loss of Information Compromise of Machine MACs (mandatory access control) and Hashes Confidentiality Eavesdropping Theft of Information Loss of Information Privacy Breach Encryption DoS Stopping Filling up Disks and Resources Stopped Transactions Authentication Impersonation Data Forgery Misrepresentation of User Accept false Data Signatures, MACs
  • 45. So Where to Secure the Web?  There are many strategies to securing the web 1. We may attempt to secure the IP Layer of the TCP/IP Stack: this may be accomplished using IPSec, for example. 2. We may leave IP alone and secure on top of TCP: this may be accomplished using the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) 3. We may seek to secure specific applications by using application-specific security solutions: for example, we may use Secure Electronic Transaction (SET)  The first two provide generic solutions, while the third provides for more specialized services
  • 46. A Quick Look at Securing the TCP/IP Stack TCP IP/IPSEC HTTP FTP SMTP TCP IP HTTP FTP SMTP SSL/TLS TCP IP S/MIME PGP UDP Kerberos SMTP SET HTTP At the Network Level At the Transport Level At the Application Level

Notes de l'éditeur

  1. Uniform Resource Locator (URL)