Tagged Questions
The bayeux tag has no wiki summary.
31
votes
3answers
6k views
Faye vs. Socket.IO (and Juggernaut)
Socket.IO seems to be the most popular and active WebSocket emulation library. Juggernaut uses it to create a complete pub/sub system.
Faye is also popular and active, and has its own javascript ...
4
votes
1answer
141 views
Publish messages using CometD Java client that can be consumed by Javascript subscribers
I have a Java web application that uses CometD. The workflow is simple:
I have defined a service that acts upon receiving messages on channel "/service/hello". This service expects a parameter ...
2
votes
1answer
610 views
System requirements for Cometd/Bayeux Usage on Android
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 ...
2
votes
2answers
580 views
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 ...
2
votes
5answers
1k views
how can i start ajax push website (activemq or cometd or sth else)?
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 ...
1
vote
1answer
51 views
Http Server Push with Netty + protobuf
We're designing a communications system for supporting asynchronous near-realtime server pushing of events/messages to thousands of clients acrros JVM, .Net and mobile platforms. We have a mixed model ...
1
vote
1answer
110 views
What is the java cometd pattern for notifying clients of server-side events?
I'm struggling to understand an efficient way to notify clients without wasting threads. When a client connects to a CometD servlet, I want to start monitoring server-side events for the client, and ...
1
vote
1answer
251 views
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 ...
1
vote
1answer
450 views
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 ...
0
votes
0answers
21 views
jquery.cometd initialization problems
I am trying to create a simple test HTML page which shows messages from a Bayeux server.
this is the code:
<html>
<head>
<title>test Baeyux connexion</title>
...
0
votes
1answer
56 views
OSGi, Jetty and CometD/Bayeux
I have got Jetty and Bayeux working well together to allow me to use comet with dojo. However, I now need to move to an OSGi jetty environment and am struggling to get it working.
In the non-OSGi ...
0
votes
0answers
101 views
Type hinting in DataContractJSONSerializer - My __type fields are being reordered beyond my control - How to work around?
I'm currently implementing a Bayeux client, which uses JSON to communicate with other applications.
DataContractJSONSerializer, and JSON.Net (NewtonSoft) both require the __type field to be the ...
0
votes
1answer
169 views
CometD/Bayeux client for iphone
Im looking for a Bayeux/CometD client for the iPhone. Objective-C implementation would work. Any idea where I can get it from? or any idea how I can create one cometD client for iphone .
0
votes
1answer
70 views
How can I publish a message to all Javascript subscribers for a channel using CometD?
Given a Java web application using CometD, how can I publish a message to all of a channel's subscribers each time a message is processed by bayeux?
For testing, I used ...
0
votes
1answer
63 views
Problems injecting a BayeuxService into another class with annotations
I have a web app that is using Bayeux to handle Comet connections. I initialize a BayeuxServer and tie it into Spring annotations and it all works fine, listening on selected channels and responding.
...
0
votes
1answer
147 views
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?)
0
votes
1answer
397 views
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.