Comet is a generic term used to describe technology used to "push" data from a web server to connected web clients. In contrast to a "typical" web connection, in which the client must request data before the server can respond with that data, with Comet implementations, data can be pushed from the ...

learn more… | top users | synonyms

2
votes
3answers
92 views

Stopping a while loop php

Interested in the question - how to properly stop a while loop with sleep inside. The fact that I implemented "long poll" to quickly update information on the website (warning, other information). ...
0
votes
0answers
29 views

Jmeter with ZK framework

I need to do a Load test on application which is built on ZK framework. When i record a script which performs below action a. User Login b. Select Role c. Open and Create Record d. Log out. When ...
-1
votes
0answers
40 views

Writing web terminal emulator as java servlet [closed]

The question is vague but maybe I can get good recommendation. I want to write terminal emulator interfaced by a browser. As server side I plan to use Java. So here is one question, what is better to ...
0
votes
2answers
21 views

Cometd how to make and subscribe channel dynamically?

I am trying to create a very simple cometD app. Mainly i want to create channels dynamically. First i tried localsession channels and after creating subscribed them via client side javascript. It ...
0
votes
2answers
38 views

How to avoid missing web push notifications while connecting to comet server

I am wondering how to make sure a client doesn't miss push events while a page is being loaded or while they are connecting to the comet server. For example, consider this timeline: ... Request web ...
0
votes
0answers
53 views

Strange PHP hidden iFrame issue (COMET) where output just stops

I have a strange problem using PHP with a hidden iFrame to receive status updates from a long running script. I have IIS 7.5 using FastCGI and PHP 5.3.13. It works for a random amount of time ...
1
vote
1answer
59 views

Jetty - Detect disconnected client (Continuations)

I'm using Jetty with Continuations to implement long polling, but I don't see a way to detect a client disconnecting. I understand that in the time between the first run (creation of the ...
2
votes
2answers
93 views

Efficient reloading data / pushing data from server to client

I'm looking for the 'way to go' (i.e. the most efficient, most used, general accepted way) when it comes to the reloading of data from a web server to a front end. In the end application, I will have ...
1
vote
0answers
91 views

Spring's DeferredResult setResult interaction with timeouts

I'm experimenting with Spring's DeferredResult on Tomcat, and I'm getting crazy results. Is what I'm doing wrong, or is there some bug in Spring or Tomcat? My code is simple enough. @Controller ...
0
votes
1answer
29 views

Can JGroups be utilized to form the Java equivalent of COMET/Long-Polling?

In webdev-land, COMET/Lojg-Polling allows the server to maintain an open connection with each client and push data to each client as it becomes available. JGroups seems like it can be made to do the ...
0
votes
0answers
15 views

Cometchat with Faye - possible?

is it possible to use Cometchat with faye or another websocket? Help links would be usefull!
0
votes
1answer
79 views

Node.js and Comet

Basically, I am trying to set up a basic comet server and client using node.js from scratch. A tried to Google things about the process it should work and as I am testing it seems to work fine. ...
0
votes
0answers
23 views

Made an comet-app with play, getting a connection-timout, and app crashes

As i wrote in the title, i am creating a comet-app and pushing things which i retrieve over a webservice to the clients. My problem is at the moment if the webservice gets down i am getting a ...
4
votes
1answer
230 views

Real time data updates with comet and PHP?

I'm looking to implement real time notification updates on my social networking website. I have done some research on comet and i'm really fascinated by it. From what I understand, this is the basic ...
0
votes
1answer
74 views

How should I implement server push so that the browser is updated with DB updates?

I am reading on various ways of doing server push to client side(broswer).I would like to understand the best approach out of these. Long polling -- To be avoided as it holds up resources longer on ...
0
votes
0answers
59 views

Progress monitor with Comet and jQuery

I started with Comet in Play Framework, so maybe my question is simple. I have action like below - it sends two messages. It is mapped in routes to /comet. Accessing http://localhost:9000/comet open ...
0
votes
1answer
139 views

Build real time notification using comet in php

I want to build real time notification system just like facebook and g+.I know they are using comet and ajax push technology for that.I have found the tutorial ...
0
votes
1answer
48 views

Cometd filter data for specific client in channel

I'm designing a system using comet where there is a common channel where data getting published. I need to filter the data using some conditions based on client subscription details. Can anyone tell ...
1
vote
1answer
188 views

HTML5 Server sent events and multiple clients (without using Comet)

I have a usecase for which I would like to know if HTML5's Server-sent-Events is suitable. Multiple clients (Javascript+HTML5 browsers) connect to the web server (with a Java EE backend). Each client ...
0
votes
0answers
36 views

Trying to use Grizzly Comet API to get updates from server but it is not working

I am having trouble with comet following the example given Grizzly Comet example here Since I am not sending data to the server I want to implement the example in the get block. Generally, on page ...
3
votes
1answer
125 views

Cometd vs ActiveMQ for server side push for real time web applications

We have requirement to develop server side push infra for real time web applications. For this, I have been considering using Cometd since this supports both long polling as well as web sockets based ...
0
votes
0answers
58 views

Need help point out whats wrong i am doing configuring Atmosphere in tomcat 6.I am unable to get it to work

Hello there i am trying to implement atmosphere comet library in a project running in tomcat 6.I have followed their wiki and added all of the libraries and and added the following in web.xml ...
0
votes
1answer
207 views

Download a file in hidden iframe: Android equivalent in Comet context?

I am currently using the following JS code to trigger a file download without leaving the page I'm on: var iframe = document.createElement('iframe'); iframe.style.display = 'none'; ...
-1
votes
1answer
31 views

C# (Windows Phone) Comet Pushing [closed]

I'm wondering, is here some library or whatever to implement a comet pushing between server (written on Java) and client APP? I need some point to start moving farther in at least. Thanks.
0
votes
1answer
27 views

How does comet work with the client side

I have a question with regards to the comet implementation. I know that it is used to handle asynchronous requests similar to what now can be achieved through Servlet 3.0 async functionality. Yet what ...
0
votes
2answers
125 views

Tomcat Push to Java Client

I'm trying to build a Java web app that will let me browse a remote file system behind my NAT router. The client can talk outbound HTTP only. I've got my Java client on the remote machine talking to ...
0
votes
0answers
42 views

Allowing events to trigger Servlet Response

I have a client that has some AJAX polls to the server (which is a Servlet based on Jetty Servlet API 2.5). The jQuery Ajax function: function poll() { $-ajax({ url: ...
0
votes
1answer
87 views

Long-polling web chat: more devices of one user

I'm working on web chat where user log in and can send message to any other logged in user. This is realized using long polling on client side and async java servlet on server side. It works well, ...
1
vote
1answer
55 views

pyramid AuthTktAuthenticationPolicy with other frameworks

I need to use the authentication cookie that AuthTktAuthenticationPolicy from pyramid authorizes with a Twisted server so I can do long polling efficiently. Is there a way to allow the Twisted server ...
0
votes
0answers
89 views

Why when i Enabling Comet on Glassfish it fails in my situation?

I want to enable comet on glassfish especially cometd, Bayeux Protocol, implementation. Following this article: http://docs.oracle.com/cd/E19798-01/821-1752/ghgxn/index.html. when using this ...
0
votes
1answer
211 views

JavaEE 6 Servlet for long polling

I've tried to create async-servlet for long-polling, using this tutorial on my Glassfish server, however it didn't work well, the POST requests were too long (timed out) and GET returned sometimes ...
2
votes
1answer
167 views

Response.Flush With Ajax is not working?

I am following the following sample to create a very simple Comet in ASP.NET 4.5. What is the best way of showing progress on an Ajax call? I have also downloaded the sample from ...
0
votes
1answer
127 views

Httpsessionlistener: two sessions are created and none are destroyed

Edit: I reformulated the question I'm using Spring and GWTEventService (which is basicly the same as Comet). When I make a simpler HttpSessionListener, I see sessionCreated() is called twice and ...
1
vote
2answers
119 views

COMET with classic AJAX chat

I have implemented a chat system using comet technique. Here is the link (see 2nd method with ajax) comet with ajax I am using it with 2 browsers and with 2 accounts when i send message with one ...
1
vote
0answers
44 views

Comet server on a web-garden

I am using an IHttpAsyncHandler to serve a comet / long-polling request. The handler holds the connection open and saves the MyAsyncResult object in a static ConcurrentSet<MyAsyncResult>. When ...
0
votes
2answers
547 views

Best way for real-time HTML/AJAX/PHP chat

I have to create a little AJAX chat in my web application and I'm dealing with problem of real-time communication between javascript client and PHP server. I want my js client to be able to catch new ...
0
votes
1answer
164 views

Mature WebSocket / Socket.io server side implementations?

I have closed-source server-side software that communicates with proprietary messages over TCP. I would like to program a client for this server that runs in the Safari web browser (an iPad). I ...
2
votes
0answers
44 views

Ajax possible to return resource while it's being loaded?

Using XMLHttpRequest, I can retrieve a page / file dynamically: var request = new XMLHttpRequest(); request.onload = function() { console.log(this.responseText); }; request.open("get", ...
2
votes
1answer
62 views

Comet Programming Implementation [closed]

I want to design a web application similar to Google Docs. i.e. I need an open connection so that clients know what other clients are editing and can in turn edit too. Is Comet Programming the right ...
0
votes
0answers
44 views

Does anyone know of an ajax comet server written in Nancy? [closed]

I need a comet server for an application I am working on and would really like to use Nancy. Does anyone know if one already exists using the Nancy framework?
2
votes
1answer
102 views

How does Twitter live update its blog posts?

We are creating a blog for our company from scratch, and we made it possible with comet in PHP and jQuery to make new blog posts able to be updated. But then we realised, what if a user edited or ...
0
votes
0answers
22 views

Best way to organize event pushing to listeners

I'm developing some web application which needs some event model. Comet server is an separate application listens on 80 http anx xxxx command ports. Receiving an command on command port it will ...
0
votes
0answers
36 views

How to configure AtmosphereHandlerService: No AtmosphereHandler found message?

I create atmosphere handlers dynamically. In case of server restart, since the created handlers are lost, I get "No AtmosphereHandler found" exception. I want to configure this message, and send it to ...
0
votes
1answer
107 views

Why setting a client-side timeout when using long polling?

In almost every long polling examples I see, there is something like a timeout of 30 seconds client-side. What is the precise reason for this?
1
vote
1answer
163 views

Is there a Comet adapter around Play Famework 2.1 Websockets?

So I made this website to use websockets. All was good on my localhost and then I decided to deploy on Heroku. This broke the website because Heroku does not support websockets! I wonder if anyone ...
0
votes
0answers
40 views

Comet under Tomcat 6.0.33 sends data to a wrong user

I am using Comet under Tomcat 6.0.33. Under some load, say 200 concurrent client long polls and 200 events within a couple of seconds. One event per client. I always found some events were delivered ...
0
votes
1answer
44 views

Uncaught ReferenceError by JS for implementing Comet

I am trying to use comet for implementing a chat.since I didn't have any experience on comet , I searched for an example code and I found this site after creating all the files, I got this ambiguous ...
2
votes
1answer
93 views

grails server push

I've been evaluating grails server push technologies, and I keep coming across the grails atmosphere plugin, but it doesn't seem like it is actively being developed. I've also seen the grails events ...
9
votes
2answers
869 views

WebSockets protocol vs HTTP

There are many blogs and discussions about websocket and HTTP, and many developers and sites strongly advocate websockets, but i still can not understand why. for example (arguments of websocket ...
0
votes
0answers
29 views

HBase coprocessor callback for comet

I would like to feed a servlet that is serving a long polling request with notifications when certain rows in an hbase table change. It seems that the best mechanism to achieve this would be to add a ...

1 2 3 4 5 20