-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Connect to websocket.org echo service #533
Comments
Well the socket.io client is expecting to connect to a socket.io server, so this just plain won't work... |
Does it also mean that the socket-io server will not work with other websocket client? |
A regular websocket client can connect to a socket.io server, but there will be socket.io's framing and heartbeats included; that's what the socket.io client abstracts away (for the websocket transport at least). |
When you say a normal websocket client can connect to socket.io server. Should the xlient point to server with ws:// or http:// adress? I am asking this because I have the client on android device, it works with websocket.org demo server. But it couldnt connect to my socket io swrver |
You need to the socket.io encoding to be able to communicate with the Socket.IO server. See github.com/learnboost/socket.io-spec for details about it. |
Hi,
I want to use socket io client that can work with the echo service of http://websocket.org/echo.html (ws://echo.websocket.org). However I tried creating the following code:
But I cannot seems to make it works, i.e. I didn't get the echo from the server.
Thanks in advance,
Idos
The text was updated successfully, but these errors were encountered: