WebSocket

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

External

Overview

WebSocket is a protocol that enables two-way communication between a client and a remote host. The security model used during communication is the origin-based security model commonly used by web browsers. The protocol consists of an opening handshake, followed by basic message framing in top of a TCP connection. The goal of this technology is to provide a two-way communication mechanism for browser-based applications that does not rely on opening multiple HTTP connections: the underlying TCP connection is used for two-way communication.

Concepts