HTTP

studied byStudied by 5 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 28

flashcard set

Earn XP

Description and Tags

29 Terms

1
TCP
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.
New cards
9
User-Agent
curl/7.36.0 lib.curl/7.63.0 OpenSSl/1.1.1 zlib/1.2.11
New cards
10
Host
www.example.com
New cards
11
Accept-Language
en
New cards
12
Server
Apache
New cards
13
Accept-Ranges
bytes
New cards
14
Content-Length
12
New cards
15
Vary
Accept-Encoding
New cards
16
Content-Type
text/plain
New cards
17
User-Agent
curl/7.36.0 lib.curl/7.63.0 OpenSSl/1.1.1 zlib/1.2.11
New cards
18
Host
www.example.com
New cards
19
Accept-Language
en
New cards
20
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
New cards
robot