bayeux

Parameters passed to cometd.subscribe()

Hopefully this isn't too specific/small a question, but I was wondering if anyone knew what the possible arguments are for the dojo cometd subscribe() function? The few examples I've seen indicate two parameters cometd.subscribe(channel, call_back); but a few implementations I've seen include a boolean and a possible object to the pa...

how can i start ajax push website (activemq or cometd or sth else)?

Hello, I want to start an application which will use ajax push, however the web server should be configured properly and i don't know how to start on server side components. I wanted to start with dojo's cometd and then read some blogs saying that activeMQ is older and flag carrier on ajax push thing, but there was also another blog sa...

How can I connect GWT to CometD/Bayeux events?

I've got a GWT application, which periodically needs to update the screen with new tick items as they come in. We also have messages published by a CometD/Bayeux server (for a different AJAX application) and I'd like to consume them in my GWT. Of course, I can drop into JavaScript, hook up Dojo, and receive callbacks in the JavaScript ...

System requirements for Cometd/Bayeux Usage on Android

Hi all, I'm trying to implement a Cometd/Bayeux server on Android using iJetty. The Jetty implementation itself works just fine serving static pages along with servlets. I am trying to up the ante a bit and create a Bayeux application on the phone but I'm having some trouble. I can hit the page that has the dojo cometd scripts on it,...

Are there any Bayeux clients in Python?

I need to connect to a Bayeux server form a wxPython APP. I would appreciate any hint about that. ...

Bayeux code example for Resin 4

Anyone have working (simple) example source code of the Bayeux + Comet support in Resin 4? Thanks. (or if not, any for Jetty?) ...

Are there any Bayeux servers on PHP?

I need simple Bayeux server on PHP but so that it will not work like daemon. I suppose it may use database or files to store information. I starting to write my own but maybe there are some realization of what i need? ...

How do I turn off DBUG level logging in BayeuxServer (embedded in Jetty)?

When running the CometD Bayeux implementation in Jetty (7.1.5), lots of DBUG level logging is output to the console. I've identified the logger as a org.eclipse.jetty.util.log.StdErrLog instance, but I'm not sure how to configure it. I'm using Jetty embedded within another application, so I tried the things suggested at http://docs.code...

Proper way to deliver messages to clients in Cometd?

I am working on an notification application using Cometd 2.1. I have a jQuery client that subscribes to my channel, and an authorizer that determines their user context. When they subscribe, I am making a subscription to Redis that may generate events in the future to send back to the client. The documentation says not to create specif...