Bayeux is a protocol for transporting asynchronous messages (primarily over HTTP), with low latency between a web server and a web client. The messages are routed via named channels and can be delivered: - server to client - client to server - client to client (via the server) See ...

learn more… | top users | synonyms

0
votes
1answer
35 views

Duplicate instance of Bayeux Server created

I'm having a problem with my CometD Application. It looks like its creating multiple instances of the Bayeux Server. My configuration Files look like the following and i'm using Web Sockets as ...
0
votes
1answer
9 views

Storing User Credientials in the Bayeux Server

I'd like to store the clients UserName and SessionId when a client subscribes to a particular channel. When i override canHandshake() i can get the user credentials using the following: userName = ...
0
votes
1answer
30 views

CometD Subscription Listeners

I’m having a problem processing Subscription Requests from Clients and carrying out some processing based on the request. I’d like to be able to invoke a method and carry out some processing when an ...
0
votes
1answer
62 views

Notifying java event to JSF Bean

Is there any way to notify jsf/spring bean when aynchronous messages are received by a java program? Moreover, the java program is a Java BayeuxClient (Cometd) as a pojo. The program successfully ...
0
votes
0answers
31 views

Is this a good approach for a BayeuxClient class? [closed]

Is this a good approach for a BayeuxClient class? Reading cometd reference book, Chapter 6 Java Libraries, I created this BayeuxClient class. As a newbie to cometd, I would like to know if this ...
0
votes
1answer
83 views

CometD Issues with Publishing Data

I'm new to CometD and having problems publishing data on a channel. I'm getting the following error for not invoking a handshake() on my channel: Sender : null Sender : L:/abc/1? Exception in thread ...
0
votes
0answers
43 views

Cometd - Bayeux transport Error

I'm trying cometd tutorial's hello world project. I have followed every step as the explained in the tutorial. When I click on the Send Hello to Server button, this TypeError: _transport is null ...
1
vote
1answer
434 views

Difference between async servlet long poll and bayeux protocol (Comet)

What is the difference between a simple Async servlet and the Comet / Bayeux protocol? I am trying to implement a "Server Push" (or "Reverse Ajax") kind of webpage that will receive updates from the ...
1
vote
0answers
54 views

Bayeux sessions are missing in websphere cluster

I have a Bayeux implementation as specified by IBM. In a stand-alone environment it works fine, but when we put it into production (clusterized), sessions are getting lost after a while. We are using ...
1
vote
1answer
434 views

Grails with Comet working example

I'm trying to implement server Push technology in Grails application using Comet by working out few simple examples, but I'm struggling to make it really work. I've been trying out 2 examples from ...
1
vote
2answers
131 views

Browser not sending any data (no errors)

So I have a faye server and a rails web application. It all worked fine till recently. Now the browser is not sending anythin to the server. There a no error not on the server not even in browser (I ...
1
vote
1answer
129 views

Meteorjs - which protocol is it using?

I'm looking at MeteorJS at the moment and I was wondering which protocol they are using on their channels. Is it Bayeux ? their own ? I wasn't able to find easy accessible infos on their website ( I ...
0
votes
1answer
25 views

Is there a framework can realize Bayeux and hang in rensin?

Look like ComeD can only extend jetty, is there a framework can realize Bayeux and hang in rensin, or other based on the long polling framework?
0
votes
1answer
119 views

node.js, faye (bayeux) - after subscribe event

I have a chat server. And after the clients subscribes I want to look in a DB to see if there is any history for the chat room they subscribed to. The problem is, that I can only catch "subscribe" ...
2
votes
2answers
296 views

Bayeux protocol and how it supports multiple tabs opened in a single browser

My question is regarding how Bayeux protocol is making it possible to have multiple tabs opened in a single browser. If we use publish/subscribe paradigm also, we need to send request to server for ...
0
votes
0answers
144 views

How to Implement Bayeux protocol on top of Curl

I'm currently working on a project which uses libcurl to fetch data from the server. What my job is to make it work with bayeux protocol. Libcurl has HTTP implementation, and Bayeux is a protocol ...
0
votes
1answer
165 views

Web messaging comet cross-domain bayeux webmsgServlet

I'm writing a mobile application using phonegap that subscribes to a SIBus jms Topic. First I was able to run a demo after configuration but I'm not able to run It from a different domain because the ...
0
votes
1answer
97 views

how to to create the path of the view to subscribe ,to a message published by bayeux.getClient().publish(

i am using node js and faye to simply pass some messages to clients , i create a node server var http = require('http'), faye = require('faye'), url = require('url'), qs = ...
1
vote
0answers
222 views

Are there any mature PHP clients for Bayeux / CometD?

I'm in the process of evaluating different AJAX push servers, one of them of course is CometD - which uses the Bayeux protocol. Since the application server code will be based on PHP 5.3, it would be ...
2
votes
1answer
157 views

Bayaux protocol implementation for Jquery

We have an application running on jQuery. In this, there is requirement of implementing Bayaux protocol. But AFAIK, only DOJO has implemented the Bayaux protocol in the form of cometd. As we are ...
0
votes
2answers
164 views

appserver/platform agnostic bayeux implementation

Am planning to create a bayeux implementation (comet) i.e a charting application which pulls the data from server and updates the chart accordingly But is there anyway I can create a platform ...
1
vote
1answer
331 views

Comet message sent twice

I want to use Cometd in my project and tried the Jetty 8 version of it on a Tomcat 7 server. It works but the message is being sent twice. To check if it had something to do with the rest of the ...
1
vote
1answer
1k 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 ...
0
votes
1answer
733 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> ...
1
vote
1answer
362 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 ...
4
votes
1answer
775 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 ...
0
votes
1answer
626 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
151 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
195 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. ...
1
vote
1answer
257 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 ...
64
votes
3answers
15k 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 ...
1
vote
1answer
536 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 ...
0
votes
1answer
230 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
801 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.
2
votes
1answer
1k 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 ...
3
votes
2answers
866 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
2k views

How can I start ajax push website (activemq or cometd or something 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
659 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 ...