Now, if someone tries to monopolize the Web, for example pushes proprietary variations on network protocols, then that would make me unhappy.
— T. Berners-Lee, Interview for Internet World, 1994
HyperText Transfer Protocol (HTTP)
HTTP — Focus on the introductory paragraph and the
“Overview of HTTP” section.
- What does it mean to say that HTTP is stateless?
- Be able to describe the following terms: request; response;
proxy; and client-server architecture.
- What are the most common HTTP request methods and what do they do?
- What are the categories of response codes and what sorts of responses does
each category address?
Note that we will focus on HTTP, not the TCP/IP framework on which it’s
built.
A basic HTTP session
- What is the standard port for HTTP communication?
- What can the server typically find out about the client in the request
header? Similarly, what can the client typically find out about the server
in the response header?
HTTP Cookies
- What are cookies and what is their purpose?
- What are the following: XSS; CSRF?
HTTP access control (CORS) — Just read the introduction
here.
- What is a cross-origin HTTP request?
- Are they useful? Are they safe?
HTML forms guide — Focus on the introductory
section here, not the tutorial.
- What is the purpose of HTML forms?
- With which HTTP request method are forms most commonly associated?
- Can forms be used to implement SPAs?
We’ll implement the form specified by this tutorial in the lab exercises.