WSS with Draft10 Support
Tamirk
tamirklein at hotmail.com
Mon Oct 31 03:35:52 EDT 2011
Hi Vibul,
Yes I'm using this example and it's working great!!!
// Handshake
WebSocketServerHandshakerFactory wsFactory = new
WebSocketServerHandshakerFactory(
this.getWebSocketLocation(req), null, false);
this.handshaker = wsFactory.newHandshaker(ctx, req);
if (this.handshaker == null) {
wsFactory.sendUnsupportedWebSocketVersionResponse(ctx);
} else {
this.handshaker.executeOpeningHandshake(ctx, req);
}
return;
My problem is when I try to connect to wss://localhost:8080/websocket I
failed to get a connection.
I tried several approaches but nothing is working out of the box :(
Can you direct me how to resolve this.
Cheers,
Tamir
--
View this message in context: http://netty-forums-and-mailing-lists.685743.n2.nabble.com/WSS-with-Draft10-Support-tp6945374p6947226.html
Sent from the Netty User Group mailing list archive at Nabble.com.
More information about the netty-users
mailing list