HTTP

0.0(0)
studied byStudied by 5 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/28

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

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.

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.

9
New cards

User-Agent

curl/7.36.0 lib.curl/7.63.0 OpenSSl/1.1.1 zlib/1.2.11

10
New cards

Host

www.example.com

11
New cards

Accept-Language

en

12
New cards

Server

Apache

13
New cards

Accept-Ranges

bytes

14
New cards

Content-Length

12

15
New cards

Vary

Accept-Encoding

16
New cards

Content-Type

text/plain

17
New cards

User-Agent

curl/7.36.0 lib.curl/7.63.0 OpenSSl/1.1.1 zlib/1.2.11

18
New cards

Host

www.example.com

19
New cards

Accept-Language

en

20
New cards

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