From this article on Wikipedia:
Keepalive messages were not officially supported in HTTP 1.0. In HTTP 1.1 all connections are considered persistent, unless declared otherwise.
- Does this mean that using this mechanism I can actually simulate a TCP socket connection?
- Using this can I make a Server "push" data to a client?
- Are all HTTP connections, even the one I am using to connect to Stack Overflow "HTTP persistent"?
- Does the COMET technology of server push use this mechanism of HTTP persistent connection to push data to clients?