Re: [pylons-discuss] Adding Websocket elements to existing Pyramid app

2019-11-24 Thread Theron Luhn
One thing I’d look into is HTTP Server Sent Events. If it works for your use case, it’s much simpler because it’s just plain HTTP under the hood. It’s unidirectional, but you can pair it with HTTP POST going the other direction. — Theron > On Nov 23, 2019, at 10:40 PM, Andrew Martin wrote:

Re: [pylons-discuss] Re: Adding Websocket elements to existing Pyramid app

2019-11-24 Thread Thierry Florac
Hi Andrew, I've built a notification mecanism using websockets in a Pyramid application. This is based on a second application process using gunicorn, while the main application process is using classic WSGI (with Apache). The two processes also communicate using websockets; I handle client