Sockets and Web services April 23, 2002 Topics Client-server model Sockets Interface HTTP Serving static content Serving dynamic content Reading 12.7,

Slides:



Advertisements
Similar presentations
Hypertext Transfer PROTOCOL ----HTTP Sen Wang CSE5232 Network Programming.
Advertisements

TCP/IP Protocol Suite 1 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 22 World Wide Web and HTTP.
World Wide Web Basics Original version by Carolyn Watters (Dalhousie U. Computer Science)
HTTP HyperText Transfer Protocol. HTTP Uses TCP as its underlying transport protocol Uses port 80 Stateless protocol (i.e. HTTP Server maintains no information.
Instructors: Randy Bryant and Dave O’Hallaron
Lecture 7, : The Internet, Summer : The Internet Lecture 7: Web Services I David O’Hallaron School of Computer Science and Department.
1 HTTP – HyperText Transfer Protocol Part 1. 2 Common Protocols In order for two remote machines to “ understand ” each other they should –‘‘ speak the.
16-Jun-15 HTTP Hypertext Transfer Protocol. 2 HTTP messages HTTP is the language that web clients and web servers use to talk to each other HTTP is largely.
HTTP Hypertext Transfer Protocol. HTTP messages HTTP is the language that web clients and web servers use to talk to each other –HTTP is largely “under.
Web Services Nov 26, 2002 Topics HTTP Serving static content Serving dynamic content class27.ppt “The course that gives CMU its Zip!”
Lecture 9, : The Internet, Summer : The Internet Lecture 9: Web Services II David O’Hallaron School of Computer Science and Department.
The World Wide Web and the Internet Dr Jim Briggs 1WUCM1.
HTTP Overview Vijayan Sugumaran School of Business Administration Oakland University.
Hypertext Transport Protocol CS Dick Steflik.
Internet Services II April 27, 2000 Topics dynamic content Tiny Web server tour class28.ppt.
Rensselaer Polytechnic Institute CSC-432 – Operating Systems David Goldschmidt, Ph.D.
Web Client/Server Communication A290/A590, Fall /09/2014.
FALL 2005CSI 4118 – UNIVERSITY OF OTTAWA1 Part 4 Web technologies: HTTP, CGI, PHP,Java applets)
Simple Web Services. Internet Basics The Internet is based on a communication protocol named TCP (Transmission Control Protocol) TCP allows programs running.
COMP3016 Web Technologies Introduction and Discussion What is the Web?
1 HTML and CGI Scripting CSC8304 – Computing Environments for Bioinformatics - Lecture 10.
HTTP Protocol Specification
Chapter 33 CGI Technology for Dynamic Web Documents There are two alternative forms of retrieving web documents. Instead of retrieving static HTML documents,
FTP (File Transfer Protocol) & Telnet
CS- 492 : Distributed system & Parallel Processing Lecture 2: 9/4/1435 Sun  networking.  internetworking essentials.  overview of network programming.
Simple Web Services. Internet Basics The Internet is based on a communication protocol named TCP (Transmission Control Protocol) TCP allows programs running.
HTTP Reading: Section and COS 461: Computer Networks Spring
HyperText Transfer Protocol (HTTP).  HTTP is the protocol that supports communication between web browsers and web servers.  A “Web Server” is a HTTP.
CP476 Internet Computing Lecture 5 : HTTP, WWW and URL 1 Lecture 5. WWW, HTTP and URL Objective: to review the concepts of WWW to understand how HTTP works.
TCP/IP Protocol Suite 1 Chapter 22 Upon completion you will be able to: World Wide Web: HTTP Understand the components of a browser and a server Understand.
Application Layer 2 Figures from Kurose and Ross
University of Amsterdam Computer Systems – Iterative server Arnoud Visser 1 Computer Systems Iterative server.
Maryam Elahi University of Calgary – CPSC 441.  HTTP stands for Hypertext Transfer Protocol.  Used to deliver virtually all files and other data (collectively.
Sistem Jaringan dan Komunikasi Data #9. DNS The Internet Directory Service  the Domain Name Service (DNS) provides mapping between host name & IP address.
HTTP HTTP stands for Hypertext Transfer Protocol. It is an TCP/IP based communication protocol which is used to deliver virtually all files and other.
Networking Programming --Web Server(I) 1. Outline Web History Web Servers –HTTP Protocol –Web Content –CGI Suggested Reading: –
Web Services Topics HTTP Serving static content
20-753: Fundamentals of Web Programming Copyright © 1999, Carnegie Mellon. All Rights Reserved. 1 Lecture 7: HTTP and CGI Fundamentals of Web Programming.
Rensselaer Polytechnic Institute CSCI-4220 – Network Programming David Goldschmidt, Ph.D.
1 Introductory material. This module illustrates the interactions of the protocols of the TCP/IP protocol suite with the help of an example. The example.
HTTP Hypertext Transfer Protocol
Web Client-Server Server Client Hypertext link TCP port 80.
1 CS 4396 Computer Networks Lab TCP/IP Networking An Example.
Carnegie Mellon 1 Web Services : Introduction to Computer Systems 21 st Lecture, Nov. 4, 2010 Instructors: Randy Bryant and Dave O’Hallaron.
Form Data Encoding GET – URL encoded POST – URL encoded
WWW: an Internet application Bill Chu. © Bei-Tseng Chu Aug 2000 WWW Web and HTTP WWW web is an interconnected information servers each server maintains.
Carnegie Mellon 1 Web Services / : Introduction to Computer Systems 22 nd Lecture, Nov. 13, 2012 Instructors: Dave O’Hallaron, Greg Ganger,
Appendix E: Overview of HTTP ©SoftMoore ConsultingSlide 1.
2: Application Layer 1 Chapter 2: Application layer r 2.1 Principles of network applications  app architectures  app requirements r 2.2 Web and HTTP.
CITA 310 Section 2 HTTP (Selected Topics from Textbook Chapter 6)
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1 Fundamentals.
Web Services November 30, 2004 Topics HTTP Serving static content Serving dynamic content “The course that gives CMU its Zip!” class26.ppt.
Web Technologies Lecture 1 The Internet and HTTP.
27.1 Chapter 27 WWW and HTTP Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
27.1 Chapter 27 WWW and HTTP Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Internet Applications (Cont’d) Basic Internet Applications – World Wide Web (WWW) Browser Architecture Static Documents Dynamic Documents Active Documents.
Carnegie Mellon 1 Web Services / : Introduction to Computer Systems 22 nd Lecture, Nov. 15, 2011 Instructors: Dave O’Hallaron, Greg Ganger,
Overview of Servlets and JSP
Carnegie Mellon 1 Web Services / : Introduction to Computer Systems 22 nd Lecture, Nov. 12, 2013 Instructors: Randy Bryant, Dave O’Hallaron,
Simple Web Services. Internet Basics The Internet is based on a communication protocol named TCP (Transmission Control Protocol) TCP allows programs running.
Tiny http client and server
HTTP – An overview.
Tutorial (4): HTTP Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
IS333D: MULTI-TIER APPLICATION DEVELOPMENT
HTTP Hypertext Transfer Protocol
The HTTP Protocol COSC 2206 Internet Tools The HTTP Protocol
HTTP Hypertext Transfer Protocol
Lecture 25: Networking (cont'd)
Presentation transcript:

Sockets and Web services April 23, 2002 Topics Client-server model Sockets Interface HTTP Serving static content Serving dynamic content Reading 12.7, 12.8 (Beta) or (New) Problems: (Beta) or (New) class27.ppt

S’02(Based on CS 213 F’01)– 2 – class25.ppt Client-server model client process server process 1. client sends request 2. server handles request 3. server sends response 4. client handles response resource Every network application is based on the client-server model: Application is a server process and one or more client processes Server manages some resource, and provides service by manipulating resource for clients. Client makes a request for a service –request may involve a conversation according to some server protocol Server provides service by manipulating the resource on behalf of client and then returning a response

S’02(Based on CS 213 F’01)– 3 – class25.ppt Clients Examples of client programs Web browsers, ftp, telnet, ssh How does the client find the server? The address of the server process has two parts: IPaddress:port –The IP address is a unique 32-bit positive integer that identifies the host (adapter). »dotted decimal form: 0x8002C2F2 = –The port is positive integer associated with a service (and thus a server process) on that machine. »port 7: echo server »port 23: telnet server »port 25: mail server »port 80: web server

S’02(Based on CS 213 F’01)– 4 – class25.ppt Using ports to identify services client Web server (port 80) client machine server machine kernel Echo server (port 7) service request for :80 (i.e., the Web server) client Web server (port 80) kernel Echo server (port 7) service request for :7 (i.e., the echo server)

S’02(Based on CS 213 F’01)– 5 – class25.ppt Servers Servers are long-running processes (daemons). Created at boot-time (typically) by the init process (process 1) Run continuously until the machine is turned off. Each server waits for requests to arrive on a well- known port associated with a particular service. port 7: echo server port 25: mail server port 80: http server A machine that runs a server process is also often referred to as a “server”.

S’02(Based on CS 213 F’01)– 6 – class25.ppt Server examples Web server (port 80) resource: files/compute cycles (CGI programs) service: retrieves files and runs CGI programs on behalf of the client FTP server (20, 21) resource: files service: stores and retrieve files Telnet server (23) resource: terminal service: proxies a terminal on the server machine Mail server (25) resource: “spool” file service: stores mail messages in spool file See /etc/services for a comprehensive list of the services available on a Linux machine.

S’02(Based on CS 213 F’01)– 7 – class25.ppt The two basic ways that clients and servers communicate Connections (TCP): reliable two-way byte-stream. looks like a file. akin to placing a phone call. slower but more robust. Datagrams (UDP): data transferred in unreliable chunks. can be lost or arrive out of order. akin to using surface mail. faster but less robust. We will only discuss connections. clientserver..., B k, B k-1,..., B 1, B 0 B 0, B 1,..., B k-1, B k,... connection clientserver dgram

S’02(Based on CS 213 F’01)– 8 – class25.ppt Internet connections (review) Clients and servers communicate by sending streams of bytes over connections: point-to-point, full-duplex, and reliable. A socket is an endpoint of a connection Socket address is an IPaddress:port pair A port is a 16-bit integer that identifies a process: ephemeral port: assigned automatically on client when client makes a connection request well-known port: associated with some service provided by a server (e.g., port 80 is associated with Web servers) A connection is uniquely identified by the socket addresses of its endpoints (socket pair) (cliaddr:cliport, servaddr:servport)

S’02(Based on CS 213 F’01)– 9 – class25.ppt Anatomy of an Internet connection (review) connection socket pair ( :51213, :80) server (port 80) client client socket address :51213 server socket address :80 client host address server host address

S’02(Based on CS 213 F’01)– 10 – class25.ppt Berkeley Sockets Interface Created in the early 80’s as part of the original Berkeley distribution of Unix that contained an early version of the Internet protocols. Provides a user-level interface to the network. Underlying basis for all Internet applications. Based on client/server programming model.

S’02(Based on CS 213 F’01)– 11 – class25.ppt What is a socket? A socket is a descriptor that lets an application read/write from/to the network. Key idea: Unix uses the same abstraction for both file I/O and network I/O. Clients and servers communicate with each by reading from and writing to socket descriptors. Using regular Unix read and write I/O functions. The main difference between file I/O and socket I/O is how the application “opens” the socket descriptors.

S’02(Based on CS 213 F’01)– 12 – class25.ppt Overview of the Sockets Interface Client Server socket bind listen accept readline writen close readline connect writen close connection request EOF Await connection request from next client open_listenfd open_clientfd

S’02(Based on CS 213 F’01)– 13 – class25.ppt Web servers web server HTTP request HTTP response (content) Clients and servers communicate using the HyperText Transfer Protocol (HTTP) client and server establish TCP connection Client requests content Server responds with requested content client and server close connection (usually) Current version is HTTP/1.1 RFC 2616, June, web client (browser)

S’02(Based on CS 213 F’01)– 14 – class25.ppt Web content Web servers return content to clients content: a sequence of bytes with an associated MIME (Multipurpose Internet Mail Extensions) type Example MIME types text/html HTML page text/plain Unformatted text application/postscript Postcript document image/gif Binary image encoded in GIF format image/jpg Binary image encoded in JPG format

S’02(Based on CS 213 F’01)– 15 – class25.ppt Static and dynamic content The content returned in HTTP responses can be either static or dynamic. Static content: content stored in files and retrieved in response to an HTTP request –Examples: HTML files, images, audio clips. Dynamic content: content produced on-the-fly in response to an HTTP request –Example: content produced by a program executed by the server on behalf of the client. Bottom line: all content is associated with a file managed by the server.

S’02(Based on CS 213 F’01)– 16 – class25.ppt URLs Each file managed by a server has a unique name called a URL (Universal Resource Locator) URLs for static content: –identifies a file called index.html, managed by a Web server at that is listening on port 80. URLs for dynamic content: –identifies an executable file called adder, managed by a Web server at that is listening on port 8000, that should be called with two argument strings: and 213.

S’02(Based on CS 213 F’01)– 17 – class25.ppt How clients and servers use URLs Example URL: Clients use prefix ( ) to infer: What kind of server to contact (Web server) Where the server is ( What port it is listening on (80) Servers use suffix ( /index.html ) to: Determine if request is for static or dynamic content. –No hard and fast rules for this. –Convention: executables reside in cgi-bin directory Find file on filesystem. –Initial “/” in suffix denotes home directory for requested content. –Minimal suffix is “/”, which all servers expand to some default home page (e.g., index.html ).

S’02(Based on CS 213 F’01)– 18 – class25.ppt Anatomy of an HTTP transaction unix> telnet 80 Client: open connection to server Trying Telnet prints 3 lines to the terminal Connected to aol.com. Escape character is '^]'. GET / HTTP/1.1 Client: request line host: Client: required HTTP/1.1 HOST header Client: empty line terminates headers. HTTP/ OK Server: response line MIME-Version: 1.0 Server: followed by five response headers Date: Mon, 08 Jan :59:42 GMT Server: NaviServer/2.0 AOLserver/2.3.3 Content-Type: text/html Server: expect HTML in the response body Content-Length: Server: expect 42,092 bytes in the resp body Server: empty line (“\r\n”) terminates hdrs Server: first HTML line in response body... Server: 766 lines of HTML not shown. Server: last HTML line in response body Connection closed by foreign host. Server: closes connection unix> Client: closes connection and terminatesM

S’02(Based on CS 213 F’01)– 19 – class25.ppt HTTP requests HTTP request is a request line, followed by zero or more request headers request line: is HTTP version of request ( HTTP/1.0 or HTTP/1.1 ) is typically URL for proxies, URL suffix for servers. is either GET, POST, OPTIONS, HEAD, PUT, DELETE, or TRACE.

S’02(Based on CS 213 F’01)– 20 – class25.ppt HTTP requests (cont) HTTP methods: GET : retrieve static or dynamic content –arguments for dynamic content are in URI –workhorse method (99% of requests) POST : retrieve dynamic content –arguments for dynamic content are in the request body OPTIONS : get server or file attributes HEAD : like GET but no data in response body PUT : write a file to the server! DELETE : delete a file on the server! TRACE : echo request in response body –useful for debugging.

S’02(Based on CS 213 F’01)– 21 – class25.ppt HTTP requests (cont) Request headers: : Provide additional information to the server. Major differences between HTTP/1.1 and HTTP/1.0 HTTP/1.0 uses a new connection for each transaction. HTTP/1.1 also supports persistent connections –multiple transactions over the same connection –Connection: Keep-Alive HTTP/1.1 requires HOST header

S’02(Based on CS 213 F’01)– 22 – class25.ppt HTTP Responses HTTP response is a response line followed by zero or more response headers. Response line: is HTTP version of the response. is numeric status. is corresponding English text. –200 OKRequest was handled without error –403ForbiddenServer lacks permission to access file –404Not foundServer couldn’t find the file. Response headers: : provide additional information about response Content-Type: MIME type of content in response body. Content-Length: Length of content in response body.

S’02(Based on CS 213 F’01)– 23 – class25.ppt GET request to Apache server from IE browser GET /test.html HTTP/1.1 Accept: */* Accept-Language: en-us Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows 98) Host: euro.ecom.cmu.edu Connection: Keep-Alive CRLF

S’02(Based on CS 213 F’01)– 24 – class25.ppt GET response from Apache HTTP/ OK Date: Thu, 22 Jul :02:15 GMT Server: Apache/1.3.3 Ben-SSL/1.28 (Unix) Last-Modified: Thu, 22 Jul :33:21 GMT ETag: "48bb2-4f " Accept-Ranges: bytes Content-Length: 79 Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html CRLF Test page Test page

S’02(Based on CS 213 F’01)– 25 – class25.ppt Serving dynamic content clientserver Client sends request to server. If request URI contains the string “ /cgi-bin ”, then the server assumes that the request is for dynamic content. GET /cgi-bin/env.pl HTTP/1.1

S’02(Based on CS 213 F’01)– 26 – class25.ppt Serving dynamic content clientserver The server creates a child process and runs the program identified by the URI in that process env.pl fork/exec

S’02(Based on CS 213 F’01)– 27 – class25.ppt Serving dynamic content clientserver The child runs and generates the dynamic content. The server captures the content of the child and forwards it without modification to the client env.pl content

S’02(Based on CS 213 F’01)– 28 – class25.ppt

S’02(Based on CS 213 F’01)– 29 – class25.ppt Issues in serving dynamic content How does the client pass program arguments to the server? How does the server pass these arguments to the child? How does the server pass other info relevant to the request to the child? How does the server capture the content produced by the child? These issues are addressed by the Common Gateway Interface (CGI) specification. clientserver content request create env.pl

S’02(Based on CS 213 F’01)– 30 – class25.ppt CGI Because the children are written according to the CGI spec, they are often called CGI programs. Because many CGI programs are written in Perl, they are often called CGI scripts. However, CGI really defines a simple standard for transferring information between the client (browser), the server, and the child process.

S’02(Based on CS 213 F’01)– 31 – class25.ppt Serving dynamic content with GET Question: How does the client pass arguments to the server? Answer: The arguments are appended to the URI Can be encoded directly in a URL typed to a browser or a URL in an HTML link adder is the CGI program on the server that will do the addition. argument list starts with “?” arguments separated by “&” spaces represented by “+” or “%20” Can also be generated by an HTML form

S’02(Based on CS 213 F’01)– 32 – class25.ppt Serving dynamic content with GET URL: Result displayed on browser: Welcome to add.com: THE Internet addition portal. The answer is: = 3 Thanks for visiting! Tell your friends.

S’02(Based on CS 213 F’01)– 33 – class25.ppt Serving dynamic content with GET Question: How does the server pass these arguments to the child? Answer: In environment variable QUERY_STRING a single string containing everything after the “?” for add.com: QUERY_STRING = “ 1&2 ” /* child code that accesses the argument list */ if ((buf = getenv("QUERY_STRING")) == NULL) { exit(1); } /* extract arg1 and arg2 from buf and convert */... n1 = atoi(arg1); n2 = atoi(arg2);

S’02(Based on CS 213 F’01)– 34 – class25.ppt Serving dynamic content with GET Question: How does the server pass other info relevant to the request to the child? Answer: in a collection of environment variables defined by the CGI spec.

S’02(Based on CS 213 F’01)– 35 – class25.ppt Some CGI environment variables General SERVER_SOFTWARE SERVER_NAME GATEWAY_INTERFACE (CGI version) Request-specific SERVER_PORT REQUEST_METHOD ( GET, POST, etc) QUERY_STRING (contains GET args) REMOTE_HOST (domain name of client) REMOTE_ADDR (IP address of client) CONTENT_TYPE (for POST, type of data in message body, e.g., text/html ) CONTENT_LENGTH (length in bytes)

S’02(Based on CS 213 F’01)– 36 – class25.ppt Some CGI environment variables In addition, the value of each header of type type received from the client is placed in environment variable HTTP_ type Examples: –HTTP_ACCEPT –HTTP_HOST –HTTP_USER_AGENT (any “-” is changed to “_”)

S’02(Based on CS 213 F’01)– 37 – class25.ppt Serving dynamic content with GET Question: How does the server capture the content produced by the child? Answer: The child generates its output on stdout. Server uses dup2 to redirect stdout to its connected socket. Notice that only the child knows the type and size of the content. Thus the child (not the server) must generate the corresponding headers. /* child generates the result string */ sprintf(content, "Welcome to add.com: THE Internet addition portal\ The answer is: %d + %d = %d\ Thanks for visiting!\r\n", n1, n2, n1+n2); /* child generates the headers and dynamic content */ printf("Content-length: %d\r\n", strlen(content)); printf("Content-type: text/html\r\n"); printf("\r\n"); printf("%s", content);

S’02(Based on CS 213 F’01)– 38 – class25.ppt Serving dynamic content with GET bass> tiny 8000 GET /cgi-bin/adder?1&2 HTTP/1.1 Host: bass.cmcl.cs.cmu.edu:8000 kittyhawk> telnet bass 8000 Trying Connected to BASS.CMCL.CS.CMU.EDU. Escape character is '^]'. GET /cgi-bin/adder?1&2 HTTP/1.1 Host: bass.cmcl.cs.cmu.edu:8000 HTTP/ OK Server: Tiny Web Server Content-length: 102 Content-type: text/html Welcome to add.com: THE Internet addition portal. The answer is: = 3 Thanks for visiting! Connection closed by foreign host. kittyhawk> HTTP request received by Tiny Web server HTTP request sent by client HTTP response generated by the server HTTP response generated by the CGI program

S’02(Based on CS 213 F’01)– 39 – class25.ppt For more information See the Tiny Web server described in your text Tiny is a sequential Web server. Serves static and dynamic content to real browsers. –text files, HTML files, GIF and JPG images. 220 lines of commented, well structured C code. Also comes with an implementation of the CGI script for the add.com addition portal.