The HTTP GET message
Consider the figure below, where a client is sending an HTTP GET message to a web server, gaia.cs.umass.edu
Suppose the client-to-server HTTP GET message is the following:
GET /kurose_ross_sandbox/interactive/quotation9.htm HTTP/1.0
Host: gaia.cs.umass.edu
If-Modified-Since: Sat, 23 Nov 2024 02:58:27 -0800
Question List
1. What is the name of the file that is being retrieved in this GET message?
2. What version of HTTP is the client running?
3. True or False: The client already has a cached copy of the file
Solution
1. The name of the file is quotation9.htm.
2. The client is running on HTTP/1.0
3. True. The client has a cached copy of the file that was updated on: Sat, 23 Nov 2024 02:58:27 -0800
That's incorrect
That's correct
The answer was: quotation9.htm
The answer was: HTTP/1.0
The answer was: True