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 ...
0
votes
0answers
20 views
Push data from server to some users, not everyone
I want push data from server to some users that i want. I can push data to all users via Play Framework with akka.io:
public static Result index() {
Comet comet = new Comet("console.log") {
...
0
votes
0answers
10 views
DWR 2.x reverse ajax in servlet 3.0 using async api
I would like to use DWR 2.x reverse AJAX in a servlet 3.0 container utilizing the servlet 3.0 async support (javadoc).
Is any special configuration needed, other than declaring DwrServlet in web.xml?
...
0
votes
1answer
30 views
How do i uniquely identify a browser (or client) whenever it's connected to server
I am using Node js and socket.io for implementing basic chat application. Every client that writes any message is broadcast-ed to all clients that are connected to server (Its a cross browser ...
0
votes
0answers
11 views
get real-time data using http persistent connection
We are woring under an application(B/S) which should display the real-time information in the clients(Browser).
Through google, it seems that we have to choices:
1) use the pulling at a certain ...
0
votes
0answers
31 views
Jetty 9 Comet Connection
Can anyone provide assistance one how to use Jetty 9 to connect to a comet based server that responds with chunked encoding and capture the responses as they come in, while leaving the connection ...
0
votes
2answers
29 views
Long-polling server
From what I understand after the number of max connections is exhausted the server will stop responding which is likely to happen on a live server with long-polling requests on index, will this also ...
0
votes
0answers
29 views
Native Mobile Apps: Server Sent Events and Forever Frame
I have a web service running on an IIS 7.5. I want to provide push notifications to my clients. I’m considering using SignalR but in order to get rid of a client library dependency I’m also ...
0
votes
1answer
33 views
ASP.NET MVC Async Controller vs Server Push(COMET/Reverse Ajax)
I'm building an ASP.NET MVC site in which the clients(browser) can make API calls that take upto 30 minutes(or more..) to process. Obviously I couldn't use normal MVC Controllers to do this as a few ...
-1
votes
1answer
35 views
Chat system implementation
I am required to implement a live chat system, somewhat similar to Facebook's in that it must:
Allow communication between 2 users
Store messages in an inbox/sent box
Store messages in inbox, marked ...
2
votes
3answers
106 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
54 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 ...
0
votes
2answers
30 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
45 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
71 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
70 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
140 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 ...
2
votes
1answer
139 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
30 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
18 views
Cometchat with Faye - possible?
is it possible to use Cometchat with faye or another websocket? Help links would be usefull!
0
votes
1answer
111 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
29 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
402 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
88 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
70 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
218 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
54 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
2answers
240 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
53 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
138 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
70 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
275 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
39 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
35 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
169 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
47 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
95 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
58 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
98 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
258 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
200 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
172 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
141 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
48 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
797 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
181 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
45 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
72 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
48 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
103 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
28 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 ...



