views:

1073

answers:

1

We've been using JETTY's suspended servlet implementation to roll our own COMET web applications using JSON messages and XStream.

Does anyone have experience with Resin's implementation of COMET and how they compare?

Also more generically than COMET does anyone have suggestions on the best Java Suspended servlet 3.0 implementation.

Here are some resources:

A: 

Both have pretty limited uptake in the community. If you are looking for a decent & free Java based Comet solution I suggest you try something like the community edition of this comet server or perhaps try implementing the Atmosphere API on top of Jetty. That may not be the answer you are looking for but if you want an industrial strength Comet implementation you would be best off this way. Just my 2 cents.

Supertux