Http Flashcards

1
Q

Describe and explain the HTTP protocol

A

Most common. Indicates that a web browser can format and display an HTML file, image file, sound file, etc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe and explain the HTTPS protocol

A

Automatically performs Secure Socket Layer negotiation and always sends data in encrypted form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

file

A

Indicates the file is not a recognized web format and will be displayed as text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Describe the GET method used in HTTP

A

The GET method is used to retrieve information from the given server using a given URI. Requests using GET should only retrieve data and should have no other effect on the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Describe the POST method used in HTTP

A

A POST request is used to send data to the server, for example, customer information, file upload, etc. using HTML forms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Describe the HEAD method used in HTTP

A

Same as GET, but transfers the status line and header section only.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe the PUT method used in HTTP

A

Replaces all current representations of the target resource with the uploaded content.
(Storing data on server)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe the DELETE method used in HTTP

A

Removes all current representations of the target resource given by a URI.
(Deleting resource on the server)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe the CONNECT method used in HTTP

A

Establishes a tunnel to the server identified by a given URI.
(Establish a link through a proxy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Describe the OPTIONS method used in HTTP

A

Describes the communication options for the target resource.

Find out what the server can do

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Describe the TRACE method used in HTTP

A

Performs a message loop-back test along the path to the target resource.
(For debugging connections)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

list the request-response interaction

A
  • An HTTP Client opens a connection and sends a request message to an HTTP server. Typically a request is either GET or POST.
  • The server then returns a response message, usually containing the resource requested. Typically in XHTML, XML or JSON.
  • After delivering the response, the server closes the connection, making the HTTP a stateless protocol. It doesn’t maintain any connection information between the transactions.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly