public class WebSocketClientHandshaker07 extends WebSocketClientHandshaker
Performs client side opening and closing handshakes for web socket specification version draft-ietf-hybi-thewebsocketprotocol- 07
| Modifier and Type | Field and Description | 
|---|---|
static String | 
MAGIC_GUID  | 
customHeaders| Constructor and Description | 
|---|
WebSocketClientHandshaker07(URI webSocketURL,
                           WebSocketVersion version,
                           String subprotocol,
                           boolean allowExtensions,
                           Map<String,String> customHeaders,
                           long maxFramePayloadLength)
Creates a new instance. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
finishHandshake(Channel channel,
               HttpResponse response)
 Process server response:
 
 
 HTTP/1.1 101 Switching Protocols
 Upgrade: websocket
 Connection: Upgrade
 Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
 Sec-WebSocket-Protocol: chat
  
 | 
ChannelFuture | 
handshake(Channel channel)
/**
 
 Sends the opening request to the server:
 
 
 GET /chat HTTP/1.1
 Host: server.example.com
 Upgrade: websocket
 Connection: Upgrade
 Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
 Sec-WebSocket-Origin: http://example.com
 Sec-WebSocket-Protocol: chat, superchat
 Sec-WebSocket-Version: 7
  
 | 
getActualSubprotocol, getExpectedSubprotocol, getMaxFramePayloadLength, getVersion, getWebSocketUrl, isHandshakeComplete, setActualSubprotocol, setHandshakeCompletepublic static final String MAGIC_GUID
public WebSocketClientHandshaker07(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders, long maxFramePayloadLength)
webSocketURL - URL for web socket communications. e.g "ws://myhost.com/mypath". Subsequent web socket frames will be
            sent to this URL.version - Version of web socket specification to use to connect to the serversubprotocol - Sub protocol request sent to the server.allowExtensions - Allow extensions to be used in the reserved bits of the web socket framecustomHeaders - Map of custom headers to add to the client requestmaxFramePayloadLength - Maximum length of a frame's payloadpublic ChannelFuture handshake(Channel channel)
Sends the opening request to the server:
GET /chat HTTP/1.1 Host: server.example.com Upgrade: websocket Connection: Upgrade Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ== Sec-WebSocket-Origin: http://example.com Sec-WebSocket-Protocol: chat, superchat Sec-WebSocket-Version: 7
handshake in class WebSocketClientHandshakerchannel - Channel into which we can write our requestpublic void finishHandshake(Channel channel, HttpResponse response)
Process server response:
HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= Sec-WebSocket-Protocol: chat
finishHandshake in class WebSocketClientHandshakerchannel - Channelresponse - HTTP response returned from the server for the request sent by beginOpeningHandshake00().WebSocketHandshakeExceptionCopyright © 2008-2016 The Netty Project. All Rights Reserved.