HTML5 Server-Push Technologies, Part 1
HTML5 Server-Push Technologies, Part 1
upcoming HTML5 specification includes a lot of powerful and exiting features which turn web browsers into a fully capable rich internet application (RIA) client platform. This article takes a deeper look into two new HTML5 communication standards,Server-Sent Events andWebSockets. These new standards have the potential to become the dominant Server-push technologies for helping developers to writereal-time web applications.
1. The evolution of the web
Since its beginning in the 1990s, the World Wide Web has grown rapidly and became more and more dynamic. While the first generation of web pages were static documents, later generations of web sites have been enriched by dynamic elements, followed ultimately by the development of highly-interactive browser-based rich internet applications.
The Hypertext Transfer Protocol (HTTP) was designed in the early days of the internet to transport information entities such as web pages or multimedia files between clients and servers. HTTP became a fundamental part of the World Wide Web initiative. The design of the HTTP protocol has been driven by the idea of a distributed, collaborative, hypermedia information system "to give universal access to a large universe of documents." The main design goal of the HTTP protocol was to minimize latency and network communication on the one hand, and to maximize scalability and independence of the components on the other hand.
The HTTP protocol implements a strict request-response model, which means that the client sends a HTTP request and waits until the HTTP response is received. The protocol has no support wherein the server initiates interaction with the client.
Listing 1. HTTP request on the wire
GET /html/rfc2616.html HTTP/1.1Host: tools.ietf.orgUser-Agent: xLightweb/2.11.3
For instance, a browser or other user agent will request a specific web page by performing an HTTPGET request such as shown in Listing 1. The server returns the requested information entity by a HTTP response such as shown in Listing 2. The response consists of the HTTP response header, and the HTTP response body, which are separated by a blank line. The GET request, in contrast, includes a HTTP header only.
Listing 2. HTTP response on the wire
HTTP/1.1 200 OKServer: Apache/2.2.14 (Debian)Date: Tue, 09 Feb 2010 05:00:01 GMTContent-Length: 510825Content-Type: text/html; charset=UTF-8Last-Modified: Fri, 25 Dec 2009 05:49:54 GMTETag: "302e72-7cb69-47b871ff82480"Accept-Ranges: bytes