Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Websocket Essentials: Building apps with HTML5 websockets

You're reading from   Websocket Essentials: Building apps with HTML5 websockets Build your own real-time web applications using HTML5 WebSockets

Arrow left icon
Product type Paperback
Published in May 2015
Publisher
ISBN-13 9781784396756
Length 110 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Varun Chopra Varun Chopra
Author Profile Icon Varun Chopra
Varun Chopra
Arrow right icon
View More author details
Toc

How it works?


WebSockets communicates using the TCP layer. The connection is established over HTTP and is basically a handshake mechanism between the client and server. After the handshake, the connection is upgraded to TCP. Let's see how it works through this flow diagram:

The following steps will take you through the flow shown in the preceding diagram:

  1. The first step is the HTTP call that is initiated from the client side; the header of the HTTP call looks like this:

    GET /chat HTTP/1.1
    Host: server.example.com
    Upgrade: websocket
    Connection: Upgrade
    Sec-WebSocket-Key: x3JJHMbDL1EzLkh9GBhXDw==
    Sec-WebSocket-Protocol: chat, superchat
    Sec-WebSocket-Version: 13
    Origin: http://example.com
    
    • Here, Host is the name of the server that we are hitting.

    • Upgrade shows that it is an upgrade call for, in this case, WebSockets. Connection defines that it is an upgrade call.

    • Sec-Websocket-Key is a randomly generated key which is further used to authenticate the response. It is the authentication key of the...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime