Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I implemented the chat engine using AJAX and jQuery. So, on the sender side, using one AJAX call, I write messages to a data file on the server. On the receiver side, I implemented a javascript timer that keeps polling/calling another AJAX function at fixed intervals, which keeps checking the previous data file mentioned above and displaying the data(i.e, the contents of the chat). But, the problem is that, when the connection remains idle for a long time (i.e., no messages are exchanged), somehow, the receiving of new messages and hence their display on the receiver side stalls. And this is directly proportional,,,higher the idle time, higher the delay for displaying new messages…I am not able to figure out the exact reason behind this. Any guesses on this?? Is the javascript timer supposedly the main culprit?? This is a kind of polling that I am using on the receiver side… I think some kind of trigger would be better. Is there a better way of handling the chat? Someone please help. Thanks.

share|improve this question
show us what have you done so far – Dirty-flow Jan 5 at 18:24
node.js and websockets for newer browsers! On the other hand you probaly did something wrong with the polling so as requests are piling up somewhere. – adeneo Jan 5 at 18:27
you could use node.js – user1721135 Jan 5 at 18:30
question is about as easy to troubleshoot as my car runs slow....why? To fix car, look under hood...to troubleshoot code look at code... ohhhhh.. what code? – charlietfl Jan 5 at 19:01

closed as not a real question by Michael Todd, cryptic ツ, dev-null-dweller, charlietfl, Michael Berkowski Jan 5 at 19:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

A better approach would be to use web sockets with a library like socket.io (node) or SignalR (asp.net).

If you're going to continue with ajax long polling, the timeouts you experience is a natural part of the architecture (and thus the appeal of web sockets). The receiver should handle the ajax timeout by firing up a new ajax request.

Part of the beauty of libraries that abstract this plumbing (socket.io for node, SignalR for asp.net) is it takes care of this process for you.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.