Darrell Brogdon
Darrell Brogdon

Reputation: 6973

Is it possible to use socket.io.js with Jetty?

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

Answers (1)

igorw
igorw

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

Related Questions