CSE312 — Web Development
Use the arrow keys or the on-screen controls to move between slides.
Packet Structure, from the outside in:
Front End: Browser. Back End: Web Server. They communicate across the Network (Internet).
Protocol://host:port/path?query_string#fragment
Protocol://host:port/path?query_string#fragment

\r\n”
\r\n” for new lines when preparing your responsesGET / HTTP/1.1\r\nHost: cse312.com\r\nConnection: keep-alive\r\nAccept-Language: en-US,en\r\n\r\n
\r\n” as a new lineRequesting http://cse312.com/
Requesting http://cse312.com/static_files/slides/1_2_HTTP.pdf
\r\n)<-- don’t forget to do this! Leaving in the space will cause bugs that are very difficult to detectHTTP/1.1 200 OK\r\nContent-Type: text/plain\r\nContent-Length: 5\r\n\r\nhello
\r\n\r\n) separating the headers and the body of the response