Marten, > On 06 May 2015, at 10:15, itli...@schrievkrom.de wrote: > > Hello, > > I'm playing with WebSockets under Pharo4 and this works as expected - > when using Pharo4 alone (using the Zinc packages). > > But I did not get it to work, when e.g. doing a proxying via nginx (I > did not check it with Apache). > > Actually Pharo4 seems to receive some stuff, because the WebSocket of > Pharo4 stuff does not work as expected after first proxying attempts. > > Has anyone experience with that ? > > Marten
Proxying the WebSockets protocol is not easy, nor implemented everywhere, like HTTP is. This makes sense if you think about it, a WebSocket connection is a permanent connection, which takes resources, this is not something most servers like. So it is more difficult. Did you see/try http://nginx.org/en/docs/http/websocket.html ? (I did not try it) Sven