-
Basic Web Interaction
The basic web interaction is client–server. The server runs and waits—basically forever. Clients then connect to the server, and if they’re using HTTP, it’s one file at a time. I make a GET request, I get the file, and it’s stored in the cache. This part actually becomes important later on, because we’re going to…
-
URL
The URL is really talking about the file—the file I actually want to transfer. So here’s an example URL. The http part is the protocol. How do we transfer the file? HTTP—Hypertext Transfer Protocol—basically means I open a connection to the server, ask for a file, get the file, and then close the connection. If…
-
Web Browser
The browser is just a software application. In the client–server model, your computer is the client. It’s where things originally land, where they’re actually stored. The reason I like talking about the web at this point is that it’s really all about the underlying technology of moving files around. Basically: here’s my URL, I want…