![]() |
iPlanet Web Server, Enterprise Edition Administrator's Guide |
Appendix B HyperText Transfer Protocol
This appendix provides a short introduction to a few HyperText Transfer Protocol (HTTP) basics. For more information on HTTP, see the Internet Engineering Task Force (IETF) home page at:
http://www.ietf.org/home.html
This appendix contains the following sections:
About HyperText Transfer Protocol (HTTP)
The HyperText Transfer Protocol (HTTP) is a protocol (a set of rules that describe how information is exchanged on a network) that allows a web browser and a web server to "talk" to each other using the ISO Latin1 alphabet, which is ASCII with extensions for European languages.
HTTP is based on a request/response model. The client connects to the server and sends a request to the server. The request contains the following: request method, URI, and protocol version. The client then sends some header information. The server's response includes the return of the protocol version, status code, followed by a header that contains server information, and then the requested data. The connection is then closed.
The iPlanet Web Server 4.x supports HTTP 1.1. Previous versions of the server supported HTTP 1.0. The server is conditionally compliant with the HTTP 1.1 proposed standard, as approved by the Internet Engineering Steering Group (IESG) and the Internet Engineering Task Force (IETF) HTTP working group. For more information on the criteria for being conditionally compliant, see the Hypertext Transfer ProtocolHTTP/1.1 specification (RFC 2068) at:
http://www.ietf.org/html.charters/http-charter.html
Requests
A request from a client to a server includes the following information:
Request Method
A client can request information using a number of methods. The commonly used methods include the following:
GETRequests the specified document
HEADRequests only the header information for the document
POSTRequests that the server accept some data from the client, such as form input for a CGI program
PUTReplaces the contents of a server's document with data from the client
Request Header
The client can send header fields to the server. Most are optional. Some commonly used request headers are shown in Table B-1.
Request Data
If the client has made a POST or PUT request, it can send data after the request header and a blank line. If the client sends a GET or HEAD request, there is no data to send; the client waits for the server's response.
Responses
The server's response includes the following:
Status Code
When a client makes a request, one item the server sends back is a status code, which is a three-digit numeric code. There are four categories of status codes:
Status codes in the 100-199 range indicate a provisional response.
Status codes in the 200-299 range indicate a successful transaction.
Status codes in the 300-399 range are returned when the URL can't be retrieved because the requested document has moved.
Status codes in the 400-499 range indicate the client has an error.
Status codes of 500 and higher indicate that the server can't perform the request, or an error has occurred. Table B-2 contains some common status codes.
Response Header
The response header contains information about the server and information about the document that will follow. Common response headers are shown in Table B-3.
Response Data
The server sends a blank line after the last header field. The server then sends the document data.
Previous Contents Index DocHome Next
Copyright © 2001 Sun Microsystems, Inc. Some preexisting portions Copyright © 2001 Netscape Communications Corp. All rights reserved.
Last Updated August 08, 2001