[Twisted-Python] Weekly Bug Summary

2014-01-25 Thread trac
Bug summary __ Summary for 2014-01-19 through 2014-01-26 Opened Closed Total Change Enhancements: 6 7 1145 -1 Defects: 4 3699 +1 Tasks: 0 1 9

Re: [Twisted-Python] Protocol for socket.io

2014-01-25 Thread Sofiane Akermoun
Hello, I looked for something that fit your needs few days ago and i came across txsockjs and i create a server based on twisted and the https://pypi.python.org/pypi/txsockjs module and i made it in few minutes. really good stuff. Of course the client part have to be written in javascript with sock

Re: [Twisted-Python] Protocol for socket.io

2014-01-25 Thread Dustin J. Mitchell
As I understand it, socket.io is a browser-side library that uses any of a number of technologies, depending on its environment, to communicate with the server. SSE, Websockets, and long polling are all on the list. Last I looked, though, I didn't see any support for the negotiation of which of t

Re: [Twisted-Python] Protocol for socket.io

2014-01-25 Thread Laurens Van Houtven
Hi Andrew, No idea about socket.io, but if you're free to pick whatever you want, and you just want "websockets, damnit!" then sockjs is actually better, and has excellent twisted support. hth lvh ___ Twisted-Python mailing list Twisted-Python@twistedm

[Twisted-Python] Protocol for socket.io

2014-01-25 Thread Andrew Francis
Hi: I searched the archive but couldn't find an answer so here goes: I am also new to all this I need to write a server that receives socket.io requests. I see Twisted has support for WebSocket. I also see that the Tornado2 socket.io is used alongside Twisted (I didn't know that this was possib