Download
FAQ History |
API
Search Feedback |
HTTP Requests
An HTTP request consists of a request method, a request URL, header fields, and a body. HTTP 1.1 defines the following request methods:
GET
: Retrieves the resource identified by the request URLHEAD
: Returns the headers identified by the request URLPOST
: Sends data of unlimited length to the Web serverPUT
: Stores a resource under the request URLDELETE
: Removes the resource identified by the request URLOPTIONS
: Returns the HTTP methods the server supportsTRACE
: Returns the header fields sent with theTRACE
requestHTTP 1.0 includes only the
GET
,HEAD
, andPOST
methods. Although J2EE servers are required to support only HTTP 1.0, in practice many servers, including the Sun Java System Application Server Platform Edition 8, support HTTP 1.1.
Download
FAQ History |
API
Search Feedback |
All of the material in The J2EE(TM) 1.4 Tutorial is copyright-protected and may not be published in other works without express written permission from Sun Microsystems.