Reputation: 6973
I'm trying to use socket.io.js for the client to connect to a Jetty server with a Jetty WebSockets plugin. It appears that socket.io.js is specifically designed to be used only with a node.js implementation. Is it possible to configure socket.io.js with a server other than node?
Upvotes: 2
Views: 4666
Reputation: 28259
There is a Java implementation of a socket.io backend.
Alternatively, you could take a look at SockJS, which is similar to socket.io, but is designed to support other backends than socket.io. Including a Java one.
Upvotes: 4