mrjoes / sockjs-tornado

WebSocket emulation - Python server
MIT License
849 stars 162 forks source link

Use as a Client to an external SockJS server #79

Closed charyorde closed 9 years ago

charyorde commented 9 years ago

Can SockJS-tornado be used as a client on the server-side?

I have an external SockJS and I want to connect to it as client from the server-side.

FZambia commented 9 years ago

SockJS-tornado is server itself so it can not be used as SockJS client.

External SockJS server probably supports raw websocket endpoint (see Connecting to SockJS without the client part in SockJS readme) - you can connect to it using any rfc 6455 compliant websocket library

charyorde commented 9 years ago

Thanks