With persistent connections, the server leaves the ________ connection open after sending responses and hence the subsequent requests and responses between the same client and server can be sent.
2
New cards
HTTP
If a website uses ________ instead of ________, all requests and responses can be read by anyone who is monitoring the session.
3
New cards
HTTP method
A(n) ________, usually a verb like GET, POST or a noun like OPTIONS or HEAD that defines the operation the client wants to perform.
4
New cards
nonpersistent connection
A(n) ________ is the one that is closed after the server sends the requested object to the client.
5
New cards
HTTP response status codes
________ indicate whether a specific HTTP request has been successfully completed.
6
New cards
Bad Request
400 ________: The server could not understand the request due to invalid syntax.
7
New cards
HTTP
________ can use both nonpersistent connections and persistent connections.
8
New cards
Nonpersistent connections
________ are the default mode for HTTP /1.0 and persistent connections are the default mode for HTTP /1.1.
The path of the resource to fetch; the URL of the resource stripped from elements that are obvious from the context, for example without the protocol (http
/ ), the domain (here, google.com), or the TCP port
21
New cards
100 Continue
This interim response indicates that everything so far is OK and that the client should continue the request, or ignore the response if the request is already finished
22
New cards
200 OK
The request has succeeded
23
New cards
GET
The resource has been fetched and is transmitted in the message body
24
New cards
HEAD
The entity headers are in the message body
25
New cards
PUT or POST
The resource describing the result of the action is transmitted in the message body
26
New cards
TRACE
The message body contains the request message as received by the serve
27
New cards
301 Moved Permanently
The URL of the requested resource has been changed permanently
28
New cards
400 Bad Request
The server could not understand the request due to invalid syntax
29
New cards
500 Internal Server Error
The server has encountered a situation it doesn't know how to handle