HTTP: Difference between revisions
Jump to navigation
Jump to search
Migrating from https://home.feodorov.com:9443/wiki/Wiki.jsp?page=HTTP
Line 26: | Line 26: | ||
* [[HTTP Session]] | * [[HTTP Session]] | ||
* [[HTTP Persistent Connections|Persistent Connections]] | * [[HTTP Persistent Connections|Persistent Connections]] | ||
* [[Using telnet to Simulate a HTTP Client]] | |||
=Experimental HTTP Server= | =Experimental HTTP Server= | ||
{{External|A simple HTTP server that can be used to investigate the behavior of HTTP clients: https://github.com/NovaOrdis/playground/tree/master/http/http-server}} | {{External|A simple HTTP server that can be used to investigate the behavior of HTTP clients: https://github.com/NovaOrdis/playground/tree/master/http/http-server}} |
Revision as of 22:35, 8 January 2017
External
- Hypertext Transfer Protocol HTTP/1.1 RFC 2616 http://www.ietf.org/rfc/rfc2616.txt
- O'Reilly HTTP: The Definitive Guide https://www.safaribooksonline.com/library/view/http-the-definitive/1565925092/index.html
Internal
Overview
HTTP is a synchronous request/response, stateless protocol, where a client makes a request, the server responds and the transaction is done.
Subjects
- Status Codes
- HTTP Request
- HTTP Response
- Headers: General HTTP Header Fields, Request Headers, Response Headers, Entity Headers, Other HTTP Headers
- HTTP Entity
- HTTP Session
- Persistent Connections
- Using telnet to Simulate a HTTP Client
Experimental HTTP Server
- A simple HTTP server that can be used to investigate the behavior of HTTP clients: https://github.com/NovaOrdis/playground/tree/master/http/http-server