Open GoogleCodeExporter opened 8 years ago
same thing every WebSocket.send("") call (Ubuntu Chrome Daily Build)
Original comment by Christop...@googlemail.com
on 23 May 2010 at 9:42
Same thing with every WebSocket.send("") - Arch Linux, Chromium 5, typhoonae
web sockets server (it was OK with pywebsockets server)
Original comment by iwuvjh...@gmail.com
on 22 Jun 2010 at 4:11
same.
Original comment by miguelwm...@gmail.com
on 14 Dec 2010 at 2:52
same
Original comment by jonathan...@gmail.com
on 7 Apr 2011 at 4:31
Same here, Google Chrome 11 on windows 7.
Original comment by martin.l...@gmail.com
on 28 May 2011 at 6:49
The sample code needs you to install a websocket server on localhost.
Replace the WebSocket url by this one : "wss://echo.websocket.org/", and it
would work.
var ws = $.websocket("wss://echo.websocket.org/", {
events: {
message: function(e) { $('#content').append(e.data + '<br>') }
}
});
Your problem is that your WebSocket is not connected and the error message is
not explicit.
Original comment by puig.ced...@gmail.com
on 27 Feb 2012 at 2:50
Original issue reported on code.google.com by
andre.uh...@gmail.com
on 31 Jan 2010 at 12:11