1 / 34

Web Servers (IIS and Apache)

21. Web Servers (IIS and Apache). Stop abusing my verses, or publish some of your own. Martial There are three difficulties in authorship: to write anything worth the publishing, to find honest men to publish it, and to get sensible men to read it. Charles Caleb Colton

Download Presentation

Web Servers (IIS and Apache)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 21 Web Servers(IIS and Apache)

  2. Stop abusing my verses, or publishsome of your own. Martial There are three difficulties in authorship: to write anything worth the publishing, to find honest men to publish it, and to get sensible men to read it. Charles Caleb Colton When your Daemon is in charge, do not tryto think consciously. Drift, wait and obey. Rudyard Kipling

  3. OBJECTIVES In this chapter you will learn: • To understand a web server’s functionality. • To introduce Microsoft Internet Information Services (IIS) and Apache HTTP Server. • To set up virtual directories from which content can be served. • To test whether you set up the virtualdirectory properly.

  4. 21.1   Introduction 21.2   HTTP Transactions 21.3   Multitier Application Architecture 21.4   Client-Side Scripting versus Server-Side Scripting 21.5   Accessing Web Servers 21.6   Microsoft Internet Information Services (IIS) 21.6.1  Microsoft Internet Information Services (IIS) 5.1 and 6.0 21.6.2  Microsoft Internet Information Services (IIS) 7.0 21.7   Apache HTTP Server 21.8   Requesting Documents 21.9   Web Resources

  5. 21.1 Introduction • A web server responds to client requests (typically from a web browser) by providing resources such as XHTML documents. When users enter a Uniform Resource Locator (URL) address, such as www.deitel.com, into a web browser, they are requesting a specific document from a web server. The web server maps the URL to a resource on the server (or to a file on the server’s network) and returns the requested resource to the client. • A web server and a client communicate using the platform-independent Hypertext Transfer Protocol (HTTP), a protocol for transferring requests and files over the Internet or an intranet.

  6. 21.2 HTTP Transactions • The HTTP protocol allows clients and servers to interact and exchange information in a uniform and reliable manner. • HTTP uses URIs (Uniform Resource Identifiers) to identify data on the Internet. • URIs that specify document locations are called URLs (Uniform Resource Locators). Common URLs refer to files, directories or objects that perform complex tasks, such as database lookups and Internet searches. • A URL contains information that directs a browser to the resource that the user wishes to access. • http:// indicates that the resource is to be obtained using the HTTP protocol.

  7. 21.2 HTTP Transactions (Cont.) • Fully qualified hostname • the name of the server on which the resource resides, called the host • A hostname is translated into an IP address—a unique numerical value which identifies the server much as a telephone number uniquely defines a particular phone line • Translation is performed by a domain name system (DNS) server—a computer that maintains a database of hostnames and their corresponding IP addresses—and the process is called a DNS lookup • The remainder of the URL after the hostname specifies both the name of the requested resource and its path, or location, on the web server • For security reasons the path normally specifies the location of a virtual directory. The server translates the virtual directory into a real location on the server (or on another computer on the server’s network), thus hiding the true location of the resource • Some resources are created dynamically and do not reside anywhere on the server

  8. 21.2 HTTP Transactions (Cont.) • When given a URL, a web browser performs a simple HTTP transaction to retrieve and display the web page found at that address. • HTTP method get indicates that the client wishes to obtain a resource from the server. The remainder of the request provides the path name of the resource (e.g., an XHTML document) and the protocol’s name and version number (HTTP/1.1). • Any server that understands HTTP can receive a get request and respond appropriately. • HTTP status code 200 indicates success. Status code 404 informs the client that the web server could not locate the requested resource. A complete list of numeric codes indicating the status of an HTTP transaction can be found at www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

  9. 21.2 HTTP Transactions (Cont.) • In a response, the server sends one or more HTTP headers, which provide additional information about the data that will be sent. • Multipurpose Internet Mail Extensions (MIME) is an Internet standard that specifies data formats so that programs can interpret data correctly. The MIME type text/plain indicates that the sent information is text that can be displayed directly, without any interpretation of the content as XHTML markup. The MIME type image/jpeg indicates that the content is a JPEG image. When the browser receives this MIME type, it attempts to display the image. • The header or set of headers is followed by a blank line, which indicates to the client browser that the server is finished sending HTTP headers.

  10. Fig. 21.1 | Client interacting with web server. Step 1: The GET request.

  11. Fig. 21.2 | Client interacting with web server. Step 2: The HTTP response.

  12. 21.2 HTTP Transactions (Cont.) • Two most common HTTP request types • get and post • get request typically gets (or retrieves) information from a server. Common uses of get requests are to retrieve an XHTML document or an image, or to fetch search results based on a user-submitted search term. • post request typically posts (or sends) data to a server. Common uses of post requests are to send information to a server, such as authentication information or data from a form that gathers user input. • An HTTP request often posts data to a server-side form handler that processes the data. • A get request sends information to the server as part of the URL in a query string. A ? separates the query string from the rest of the URL in a get request. A name/value pair is passed to the server with the name and the value separated by an equals sign (=). If more than one name/value pair is submitted, each pair is separated by an ampersand (&). • A get request may be initiated by submitting an XHTML form whose method attribute is set to "get", or by typing the URL (possibly containing a query string) directly into the browser’s address bar • A post request is specified in an XHTML form by the method "post". The post method sends form data as an HTTP message, not as part of the URL. • A get request limits the query string to a specific number of characters (2083 in IE; more in other browsers). • Large pieces of information must be sent using the post method.

  13. Software Engineering Observation 21.1 The data sent in a post request is not partof the URL and the user can’t see the databy default. However there are tools available that expose this data, so you should not assume that the data is secure just because a post request is used.

  14. 21.2 HTTP Transactions (Cont.) • Browsers often cache web pages so they can quickly reload the pages. If there are no changes between the version stored in the cache and the current version on the web, this helps speed up your browsing experience.

  15. 21.3 Multitier Application Architecture • Web-based applications are multitier applications that divide functionality into separate tiers. Although tiers can be located on the same computer, the tiers of web-based applications typically reside on separate computers. • The bottom tier (also called the data tier or the information tier) maintains the application’s data. • The middle tier implements business logic, controller logic and presentation logic to control interactions between the application’s clients and its data. • Business logic in the middle tier enforces business rules and ensures that data is reliable before the server application updates the database or presents the data to users. Business rules dictate how clients can and cannot access application data, and how applications process data. • The top tier, or client tier, is the application’s user interface. In response to user actions, the client tier interacts with the middle tier to make requests and to retrieve data from the information tier. The client tier then displays the data retrieved for the user. The client tier never directly interacts with the information tier.

  16. Fig. 21.3 | Three-tier architecture.

  17. 21.4 Client-Side Scripting versus Server-Side Scripting • Client-side scripting can be used to validate user input, to interact with the browser, to enhance web pages by manipulating the DOM of a page, and to add Ajax functionality. • Client-side scripting does have limitations, such as browser dependency; the browser or scripting host must support the scripting language and capabilities. • Client-side scripts can be viewed by the client by using the browser’s source-viewing capability. • Sensitive information, such as passwords or other personally identifiable data, should not be stored or validated on the client.

  18. 21.4 Client-Side Scripting versus Server-Side Scripting (Cont.) • Placing large amounts of JavaScript on the client can open web applications to attack and other security issues. • Code executed on the server often generate custom responses for clients. • Server-side scripting languages have a wider range of programmatic capabilities than their client-side equivalents. For example, server-side scripts often can access the server’s file directory structure, whereas client-side scripts cannot access the client’s directories. • Properly configured server-side scripts are not visible to the client; only XHTML and any client-side scripts are visible to the client.

  19. Software Engineering Observation 21.2 Properly configured server-side script source code is not visible to the client; only XHTML and any client-side scripts are visible to the client.

  20. 21.5 Accessing Web Servers • To request documents from web servers, users must know the hostnames on which the web server software resides. • Users can request documents from local web servers or remote web servers. • Local web servers can be accessed through your computer’s name or through the name localhost—a hostname that references the local machine and normally translates to the IP address 127.0.0.1 (also known as the loopback address).

  21. 21.6 Microsoft Internet Information Services (IIS) • Microsoft Internet Information Services (IIS) is a web server that is included with several versions of Windows. Installing IIS on a machine allows that computer to serve documents. • To install IIS 5.1 on Windows XP, you may need your original operating-system disk. For IIS 6.0 (Windows Server 2003) and IIS 7.0 (Windows Vista), the software should already be installed, but is also available on your installation disk. • You place documents that will be requested from IIS either in the default directory or in a virtual directory. A virtual directory is an alias for an existing directory that resides on the local machine or on the network. • In Windows Vista, before you can use IIS, you must enable the World Wide Web Publishing Service (W3SVC).

  22. Fig. 21.4 | Internet Information Services window of IIS 5.1.

  23. Fig. 21.5 | Virtual Directory Creation Wizard welcome page.

  24. Fig. 21.6 | Virtual Directory Alias page of the Virtual Directory Creation Wizard.

  25. Fig. 21.7 | Web Site Content Directory page of the Virtual Directory Creation Wizard.

  26. Fig. 21.8 | Access Permissions page of the Virtual Directory Creation Wizard.

  27. Fig. 21.9 | Internet Information (IIS) Services Manager window (IIS 7.0).

  28. Fig. 21.10 | Add Virtual Directory dialog.

  29. 21.7 Apache HTTP Server • The Apache HTTP Server, maintained by the Apache Software Foundation, is currently the most popular web server. It is open source software that runs on UNIX, Linux, Mac OS X, Windows and numerous other platforms. • Mac OS X and many versions of Linux come preinstalled with Apache. • You can obtain the Apache HTTP Server for a variety of platforms from httpd.apache.org/download.cgi. • All documents that will be requested from an Apache HTTP Server must be either in the default directory or in a directory for which an Apache HTTP Server alias is configured. An alias is Apache’s equivalent to Microsoft IIS’s virtual directory. It is a pointer to an existing directory that resides on the local machine or on the network. • The httpd.conf file contains all the information that the Apache HTTP Server needs to run correctly and serve web documents. An introductory comment at the top of the httpd.conf file explains how the file is organized. After this comment, the configuration information starts with the most important, global settings.

  30. Fig. 21.11 | Apache Service Monitor. (Courtesy of The Apache SoftwareFoundation, <http://www.apache.org/>.)

  31. Good Programming Practice 21.1 Place a small comment near any changesyou make to the Apache httpd.conf file.

  32. Error-Prevention Tip 21.1 If you place a forward slash (/) at the end of the aliasname, Apache will require this slash when a documentis requested from the server. For example, if your aliasis /myExamples/, then a user request for http://localhost/myExamples will not workas expected. The user will need to request http://localhost/myExamples/ to access the alias. If the forward slash (/) is not placed at the end of the alias name, Apache will not require this slash, and will work as expected whether or not it is present in the request.

  33. 21.8 Requesting Documents • The server sends XHTML documents to the client as static web pages. The server response for a given XHTML document is always the same. • For other types of documents, such as PHP, Ruby on Rails, ASP.NET and JavaServer Faces, the appropriate language interpreter or scripting engine first generates XHTML content, then transmits it to the client over HTTP. These are often referred to as dynamic web pages, because the results of these requests might vary based on numerous factors, such as user input, the time of day and current database content. • A file cannot be copied directly to a virtual directory, because a virtual directory is only a name referring to a physical local directory. • To request the document from IIS or Apache, start the server, launch a web browser and enter the XHTML document’s URL (i.e., http://localhost/Chapter21Test/test.html) in the Address field.

  34. Fig. 21.12 | Requestingtest.html.

More Related