HTTP
Most web applications use HTTP to exchange data between the client (typically a web browser such as Internet Explorer or Netscape Navigator) and the server. HTTP works through a series of requests from the client and associated server responses back to the client. Each request is independent and results in a server response. A detailed familiarity with HTTP requests and responses is critical to effectively test web applications. Example 8-1 shows what a typical raw HTTP request looks like.
Example 8-1. Typical HTTP GET request
GET /public/content/jsp/news.jsp HTTP/1.1 Accept: image/gif, image/x-xbitmap, image/jpeg, */* Accept-Language: en-us Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 6.0) Host: www.myserver.com Connection: Keep-Alive
The first line of the HTTP request typically contains the request
method—in this case, the GET
method—followed by the file or resource being requested. The
version of HTTP the client uses is also appended to the first line of
the request. Following this line are various request headers and
associated values.
Several HTTP request methods are defined in the HTTP RFC; however, by
far the two most common are the
GET
and POST
methods. The
primary difference between these methods is in how application
parameters are passed to the file or resource being requested.
Requests for resources that do not include parameter data are
typically made using the GET
request (as shown in
Example 8-1). GET
requests, however, can also include ...
Get Network Security Tools now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.