The versions of HTTP

About

There is actually two version published of http:

  • 1.0
  • and 1.1 being the latest.

One of the most important difference with 1.1 and earlier versions is that persistent connections are the default behavior of any HTTP connection. They are not closed for every fetch.

Location

The version can be found:





Discover More
Chrome Devtool Har
HTTP - Request

An HTTP request is a message sent from a client to a server. It's the first part of a fetch, the second being the response. A request message has: a first line called the request...
HTTP - Response

An HTTP response is a message sent from a server to a client in response to a request. It's the second part of a fetch, the first being a request. Example of a response that returns an HTML document...
HTTP Connection management

An HTTP fetch creates a network connection. This article gives you an overview and direct your to the reference documentation for more information
Data System Architecture
Log - Apache Common Log Format

Apache Common Log Format is a Log format for a HTTP request received by a web server that comes from the Apache Web Server. Log file entry for a request: where: 127.0.0.1 is the IP address (or host...
What is a status line in HTTP ?

The ''status line'' is the first line of a HTTP response that contains the status to inform you of the success of the request or not. To know more, just click through



Share this page:
Follow us:
Task Runner