Tagged Questions
The server-push tag has no wiki summary.
69
votes
8answers
36k views
Comet and jQuery
I've done some research into server push with javascript and have found the general consensus to be that what I'm looking for lies in the "Comet" design pattern. Are there any good implementations of ...
25
votes
6answers
3k views
HTML 5 Websockets will replace Comet?
It looks like Websockets in HTML 5 will become a new standard for server push.
Does that mean the server push hack called Comet will be obsolete?
Is there a reason why I should learn how to ...
19
votes
9answers
9k views
Implement Comet / Server push in Google App Engine in Python
How can I implement Comet / Server push in Google App Engine in Python?
13
votes
7answers
12k views
ASP.NET Push Redirect on Session Timeout
I'm looking for a tutorial, blog entry, or some help on the technique behind websites that automatically push users (ie without a postback) when the session expires. Any help is appreciated
12
votes
8answers
8k views
Client notification, should I use an AJAX Push or Poll?
I am working on a simple notification service that will be used to deliver messages to the users surfing a website. The notifications do not have to be sent in real time but it might be a better user ...
8
votes
5answers
8k views
asp.net http server push to client
What's the best way to push info from a server to a web client? I know it's possible to setup sockets with Silverlight and Flash but I want to stay way from those two technologies.
Gmail seems to do ...
5
votes
5answers
150 views
Investigating solutions for notifying WPF clients from server
I have a project coming up with the requirement to notify WPF desktop clients when something happens on the server. Additionally, the notification to the WPF clients will not be broadcasted (sent to ...
5
votes
4answers
143 views
Multiuser editing in a complicated page using server push
I'm using Zend Framework for an application called Pricetag, and we're thinking of adding support for real-time multi-user editing. Basically the idea is, in each of 4 steps, to be able to share what ...
5
votes
2answers
1k views
Reverse AJAX? Can data changes be 'PUSHED' to script?
I have noticed that some of my ajax-heavy sites (ones I visit, not ones I have built), have certain auto-refresh features. For example, in GMail, if I get a new message, I see the new message without ...
5
votes
5answers
746 views
The client (desktop app) pulls data…but I want the server (web app) to push data
I have a client-server application - wherein the server is essentially an ASP .NET web application and the distributed clients are desktop applications.
The clients need to receive some data from the ...
5
votes
2answers
3k views
Client side Callback in GWT
I'm trying to create a logger for a GWT application as an exercise to evaluate GWT. What I specifically want to do is have it so that I can post messages to a client side label at any point from the ...
4
votes
1answer
83 views
Sending push to multiple android devices with a single POST
I've implemented push notifications in my Android app and am trying to build out the server-side to make it more scalable. Looking at the documentation on how to construct the POST to send a push, it ...
4
votes
8answers
1k views
Implementing Server Push
Read about Server push here.
I want to push data to client from my web application in real time.
I was looking at TCP sockets as one of the options.
For HTTP I found a variety of frameworks for Java, ...
4
votes
1answer
1k views
Server Push With rails options
I am trying to build a rails application which requires a "server push" functionality ie Comet .
I started looking for options I have found three and tried one of them:
Juggernaut : I tried it, am ...
3
votes
11answers
382 views
how to push the data to the jsp with out requesting it for every 2 seconds?
I want to push the data to the jsp for every 2 seconds, with out client requesting it.
I am using Spring with Hibernate here.
I am displaying google maps marker, and I want to update the marker ...
3
votes
1answer
1k views
jQuery ajax php long polling
I've been trying to get this long polling script to work but I keep getting stuck. This time I have a problem with the ajax request to the server. The php script that serves the data (running the ...
3
votes
2answers
1k views
Can ASP.NET MVC's AsyncController be used to service large number of concurrent hanging requests (long poll)?
Frameworks like Node.js, Tornado, and Twisted let developers create server-push applications that supports large number of concurrent hanging requests (10k+). From what I understand, they all achieve ...
3
votes
1answer
1k views
What is your favorite GWT Server Push Framework/Library?
What is your favorite GWT Server Push Framework/Library, and the reason behind your choice?
rocket-gwt
dwr4gwt
gwteventservice
gwt-comet
gwt-comet-streamhub
Other platform (please provide link)
Own ...
3
votes
3answers
1k views
Comet, Ajax Push, Reverse Ajax
Someone have any sample of Comet app .net?
I need one sample how to persist connection of client in server?
3
votes
2answers
531 views
WebOrb.net / Alternatives
I'm working on an online forex trading system and a while back we have decided to use weborb for .net.
The decision was made mainly because we already have a pretty solid .net backbone that was built ...
3
votes
2answers
586 views
Server Push / HTTP Streaming on Windows Mobile / Windows CE
I find that HTTP Streaming / Server Push is quite promising for my project. Does someone have any clue on how to implement this in Windows Mobile?
.NET / Native / other implementations are welcomed. ...
3
votes
6answers
609 views
How to make all connected browsers reload initiated by a server-side event
Suppose there is a webpage with dynamically generated content -- say a div containing the current number of connected browsers. When the count changes on the server I want all connected browsers to ...
3
votes
7answers
5k views
Online tutorials for implementing comets (server push)
I want to be able to push prices to a web interface as they become available (rather than having to be requested each time).
I have spent hours looking for tutorials on Google. However I cannot seem ...
3
votes
2answers
735 views
Comet applications without using IFrames
I am just getting started creating an AJAX application using server side push. I am using Grizzly Comet on Glassfish V2. Almost all the sample applications use IFrames for updating content on the ...
2
votes
3answers
108 views
Scalability of LongPolling in .Net :Grand Finale
I did my research on how to implement comet like chat on asp.net / MVC.
what i found was it can be done by Long Polling..
about long polling , because it keeps the threads open so many concurrent ...
2
votes
1answer
321 views
Can we push notification without using APNs?
Is it possible to push notification from my 3rd party server directly to my device in Intranet(Wi-Fi)? I have achieved to push notification to the device with the help of APNs, but my requirement to ...
2
votes
2answers
279 views
Server-Push Technology (aka. “COMET”, “http server push”, “websockets”)
What does MS/Azure offer in the way of server push technology? My guess is that there is not, as yet, an RTM offering for this. The Microsoft-oriented status of this technology, I believe is as ...
2
votes
2answers
250 views
how to implement server pushing when there is an update in mysql database?
the situation i'm facing is:
i have a php+mysql web application. several users share resources in the same database.
i want to implement a feature that whenever there is a change for database ...
2
votes
1answer
636 views
Mechanism for Server Push with Apache and Perl
I'm looking to add some sort of HTTP push-like functionality, implemented via long polling or another standard means, to a page built with Perl on top of Apache.
Is there a way to do this without ...
2
votes
2answers
200 views
What server side solution did Google Wave used?
I wonder what server side solution Google used for Google Wave.
I have heard that they used Node.js for this. Is that true?
Or did they use other non-open source solutions?
2
votes
1answer
447 views
How to write a simple server-push implementation in Python using django?
I would like to write a simple server-push implementation either using long pooling or comet that integrates into the server.
I don't want to use a networking framework like twisted because I want to ...
2
votes
3answers
227 views
A scalable solution for server side push?
I would like to implement a mechanism which will provide a RESTful API that allows a client to register interest in a subject with a sever, and receive asynchronous notifications from the server after ...
2
votes
1answer
343 views
Is there an open source cross-platform push server?
I'm currently in need of a (preferably open-source) free push server, that supports both linux and windows. I need something similar to the Ajax Push Engine, but that project unfortunatelly does not ...
2
votes
4answers
296 views
Do Java web-server apps have any way to PUSH?
Web-servers work in response to incoming HTTP requests... process the request and return an HTTP response. Are there any common ways that a server can PUSH data to clients in this architecture... e.g ...
2
votes
2answers
587 views
Reading HTTP server push streams with Python
I'm playing around trying to write a client for a site which provides data as an HTTP stream (aka HTTP server push). However, urllib2.urlopen() grabs the stream in its current state and then closes ...
2
votes
4answers
149 views
Receive input over TCP/IP and use it to update HTML
This has got to be a FAQ, so can someone please just direct me to a "network programming for dummies" URL?
The server wants to push information to a client or broadcast to all, when an event happens ...
2
votes
1answer
593 views
Difference from Twisted and Tornado?
I need to create a simple browser chat using a Comet webserver.
So I have found Twisted and Tornado.
What is the difference ?
2
votes
2answers
274 views
Are there any good open-sourced comet web servers for ASP.NET MVC applications?
I'm looking for one that can be used to handle many long poll clients and does not create a thread for each request.
2
votes
1answer
327 views
When will palm's push notification go live? What are the alternatives right now?
When will palm's push notification go live? What are the alternatives right now? We are in development of an app that needs push notification to function otherwise it will just not work. What should ...
2
votes
3answers
5k views
How to implement Server push / long polling / comet using PHP and Javascript
How can I implement the comet / server push design pattern using PHP and Javascript?
Essentially what I would like is something like this:
User clicks a 'submit' button
Javascript shows a message ...
2
votes
4answers
1k views
How to achieve Comet using Flash
How can Comet (aka Server Push) be used with Flash programs?
What will be needed at server side for the same?
Does this require any customised servers or will normal IIS or Apache do?
Also is ...
2
votes
2answers
376 views
Which way is best, to implement Comets in a Java Servlet
I want to write an aplication that uses the Comets pattern - that is a request that can be responded to when an event occurs on the server, rather than only as a response to an immediate request.
...
2
votes
2answers
319 views
How to implement server push for more values at a time?
What is the best way to implement server push for more than one thing.
Lets say I want to just update user status, so I can periodicaly poll the server for status in like 1000ms and update the page. ...
2
votes
3answers
773 views
Compatibility of Comet with current technology
I hear that I can use Comet as a server push technology along with my Ajax code to increase the performance of my web applications.
How mature this Comet technology?
Is it supported by all web ...
1
vote
2answers
27 views
A technology to push data from a server to a desktop Java application
I have a Java desktop application, which needs to be updated with data from a web server continuously.
Since the desktop application could be used in a mobile environment (e.g. on a laptop with a 3G ...
1
vote
1answer
57 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
84 views
Using javapns for push notification provider/server
I am using javapns for server side coding. Do I need to convert the .p12 file into .pem file or can I directly use the .p12 file in the code?
Currently I am using the .p12 file as mentioned below.
...
1
vote
2answers
222 views
Alternative Server Push/ Comet implementation for Android browser without sending 4KB messages?
I am developing a web application that uses Comet Hidden iFrame technique to push data from server to mobile browser.
Everything works fine on Mobile Safari but Android is a lot more painful. It ...
1
vote
1answer
103 views
Java EE 6 server push
Background
I'm well into building a central appointment booking system for various service providers. This is being built on Java EE 6 on GlassFish 3.1.1, making use of JSF 2, EJB 3.1 and other JEE6 ...
1
vote
1answer
38 views
Connecting with a server - implementing a server push
I'm in the process of developing an android game within a group of people. Our knowledge is very limited. As a part of the game it will be essential for us to have the continuous possibility for ...