I can't seem to connect to an Eventlet server using the updated WebSocket implementation in Firefox 6 (MozWebSocket). The older implementation that was disabled by default would work fine as long as it was enabled. Is Eventlet's implementation incompatible with the updated WebSocket protocol that Firefox 6 uses?

On the client side, I see this in Firebug:

Firefox can't establish a connection to the server at ws://localhost:8888/stream?channel=q42nx.

Eventlet's output shows this:

127.0.0.1 - - [02/Sep/2011 16:19:42] "GET /chat HTTP/1.1" 400 103 0.001496

I'm testing with the websocket_chat.py example in the Eventlet examples folder. In the HTML file (websocket_chat.html), I changed the javascript on line 8 from

var s = new WebSocket("ws://127.0.0.1:%(port)s/chat");

to

var s = new MozWebSocket("ws://127.0.0.1:%(port)s/chat");
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.