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.
New cards
2
HTTP
If a website uses ________ instead of ________, all requests and responses can be read by anyone who is monitoring the session.
New cards
3
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.
New cards
4
nonpersistent connection
A(n) ________ is the one that is closed after the server sends the requested object to the client.
New cards
5
HTTP response status codes
________ indicate whether a specific HTTP request has been successfully completed.
New cards
6
Bad Request
400 ________: The server could not understand the request due to invalid syntax.
New cards
7
HTTP
________ can use both nonpersistent connections and persistent connections.
New cards
8
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
New cards
21
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
New cards
22
200 OK
The request has succeeded
New cards
23
GET
The resource has been fetched and is transmitted in the message body
New cards
24
HEAD
The entity headers are in the message body
New cards
25
PUT or POST
The resource describing the result of the action is transmitted in the message body
New cards
26
TRACE
The message body contains the request message as received by the serve
New cards
27
301 Moved Permanently
The URL of the requested resource has been changed permanently
New cards
28
400 Bad Request
The server could not understand the request due to invalid syntax
New cards
29
500 Internal Server Error
The server has encountered a situation it doesn't know how to handle