I need to push events to web clients in a cross-browser manner (iPhone, iPad, Android, IE/FF/Chrome/etc.) from a Spring based Java server. I am using backbone.js on the client side.

To my best knowledge, I can either go with a Web socket only approach, or I can use something like socket.io.

What is the best practice for this issue, and which platform/frameworks should I use?

Thanks

link|improve this question

70% accept rate
feedback

4 Answers

Looks like you're interested in an AJAX Push engine. ICEPush (same group that makes ICEFaces) provides these capabilities, and works with a variety of server- and client-side frameworks. There is also APE.

link|improve this answer
feedback

You can have a look at Lightstreamer.

My company is currently using it to push real time financial data from a web server.

link|improve this answer
What's the advantages of using a commercial solution for this? Is there a specific reason that you are using this framework? – Ron Reiter Sep 21 '11 at 15:19
feedback

I suppose Grizzly or Netty may fit your needs. Don't have a real experience in that scope, unfortunately.

link|improve this answer
feedback

I'd recommend socket.io as you mentioned in your question, if you're doing browser based eventing from a remote host. Socket.io handles all the connection keep-alives and reconnections directly from javascript and has facilities for channeling messages to specific sessions (users). The real advantage comes from the two-way communication of WebSockets without all the boilerplate code of maintaining the connection.

You will need to do some digging for a java implementation thoughConsider running the server directly from V8.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.