Questions tagged [reverse-ajax]

As its name implies, it is opposite of AJAX. In AJAX methodology, browser sends request to server and server responds and only a part of page is updated. In reverse-ajax, server sends back some information to browser even if browser does not requests it explicitly and the server updates a part of loaded page.

78 questions
1
vote
1 answer

server side push (comete) to populate full Calendar event without javascript polling in Grails.

anybody can please, tell me how we can populate /display data updated dynamically at server side on full calendar without javascript polling /setInterval. there is Atmosphere plugin given in grails but documentation is very poor. Thanks in…
Nitin Dhomse
  • 2,524
  • 1
  • 12
  • 24
1
vote
1 answer

Implement Reverse AJAX using DOJO javascript

I want to implement Reverse AJAX using DOJO javascript framework. Does DOJO provide support out-of-the-box similar to others like DWR? I am using the latest DOJO. Any reference/examples would be great. Also what changes would need to be done on the…
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
1
vote
1 answer

Spring-MVC, Cometd : Broadcasting without @Listener

I am working on a Spring-MVC application and thanks to users on SO, we already have a working Cometd chat functionality. Another functionality we have in the application is notifications, but we would like to integrate Real-time notifications as…
We are Borg
  • 5,117
  • 17
  • 102
  • 225
1
vote
0 answers

Display code flow on UI in java web application

I have a java web application, developed in Spring Framework. In that, I am running a job (like moving data from one database to other database). I want to track the progress of the operation, not by displaying some progress bar, instead of that, I…
user3035305
  • 285
  • 1
  • 9
  • 17
1
vote
1 answer

Cometd publishes input data Map instead of waiting for Output from server

I am working on a Spring-MVC application which uses Cometd for chatting. The only problem I am facing is when I send a message from client-side, the client is appending that message directly to server-says, instead of waiting for me to call in the…
We are Borg
  • 5,117
  • 17
  • 102
  • 225
1
vote
1 answer

How to run comet chat in parallel tabs

I have developed a chat site which uses reverse-ajax/COMET with php backend and works pretty well, but when I run a page in two parallel tabs of the same browser, the response slows down because the 2nd tab waits for the 1st tab to finish its…
user4672604
1
vote
0 answers

One time database update to UI

There is one time update on database which is happening through webservice. When this update happens I need to reflect it on UI right away. It's not a chatty application and this type of reverse update is rare.What is the best way to achieve it?I…
Himanshu Yadav
  • 13,315
  • 46
  • 162
  • 291
1
vote
0 answers

Reverse AJAX PHP Multiple User Chat

Here is the situation. I have an admin panel(which multiple admins use at the same time) and employee panel(which multiple employees use at the same time). An admin can chat with multiple employees at the same time but an employee can only chat with…
Asim Siddiqui
  • 309
  • 5
  • 19
1
vote
3 answers

Can push technology / comet be faked?

Client has a dating site and would like to have a popup (either a nice javascript overlay or a new browser window popup. we're flexible.) displayed to users when another user is visiting their page. I'm familiar with push technology and Comet but…
stef
  • 26,771
  • 31
  • 105
  • 143
1
vote
1 answer

Exception resuming continuation: dwr glassfish

I'm using dwr3 for reverse ajax with spring mvc. Everything works fine when the application is deployed in tomcat(version 6). But I'm getting the following error when running the same application in glassfish (version 3.1). Any help is highly…
Nadeeshani
  • 493
  • 4
  • 8
0
votes
3 answers

ASP.NET asynchronous controllers and long polling

I've been looking for IIS based solutions for comet/push/reverse-ajax pages, and came upon asynchronous controllers It seems like that allows xhr long polling without the problem of running out of threads, am I correct? Does this allow fairly…
carpat
  • 861
  • 10
  • 25
0
votes
0 answers

Using fetch to wait for next response from AJAX url without polling again to the server

If I had a URL like https://jsonplaceholder.typicode.com/users which would return say 10,000 JSON objects instead of 10, or say even simpler, 100 full-formatted JSON strings which takes 1 minute for fetching each of the 100 JSON string from the…
anjanesh
  • 3,771
  • 7
  • 44
  • 58
0
votes
1 answer

Coding a Game Lobby in ASP.NET

I have an online 3D multiplayer game that uses a plugin to embed itself into a web page and I'm trying to figure out how to make a web based lobby for it without turning to Flash. The idea is that signed in players choose a game type on a page and…
Ivan
  • 1,093
  • 1
  • 10
  • 15
0
votes
1 answer

Fetch data from Android to webserver

I have a certain concept in mind, but I an unsure what my possibilities are. User enters a name (html form) on a webpage Webserver sends push notification to the Android device of the user Application looks for this name in the contactslist and…
stickies-v
  • 103
  • 2
0
votes
1 answer

What exactly does the expected HTTP response for a Reverse-AJAX request look like?

I'm trying to implement a simple Web Service (running on an Arduino board using an Ethernet shield) that can provide (push) information to a subscribed client by means of Reverse-AJAX. The web service hosts a single web page that presents…
Tom
  • 73
  • 1
  • 1
  • 6