I have created quite a few web chats using VB.NET and ASP.NET and I'm just wondering how Stack Overflow handles messages being sent back to clients. Because web can only make requests and get responses back once, how does Stack Overflow handle messages? In my implementation I have a recursive loop that gets called every 1 second and makes an Ajax request to the server to get the latest messages, but I am thinking of using web services. Will using web services rather than Ajax help performance in the web application?
feedback
|
closed as not a real question by AVD, rick schott, John Saunders, Jarrod Roberson, Graviton Dec 14 '11 at 6:45
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. See the FAQ for guidance on how to improve it.
|
I did what vascowhite suggested in his comment (except I used the Chrome Web Inspector). The StackOverflow chat page does a post using jQuery about every 1-10 seconds to http://chat.stackoverflow.com/events. It receives data back in the form of a JSON object. If the room is busy it will poll more often (about every second). Here's the result when somebody else posted a new message:
Quite cryptic, but that's also to save on bandwidth. But you can clearly see in the Here's another poll with
If there are no new messages to display, the result looks like this:
For sending back these messages from the server you'd want minimal overhead. Use a simple handler (.ashx file) or web services. Don't use an ASPX page, the overhead of the page life cycle is not necessary. | |||||
feedback
|
|
If you are looking at writing a chat application, see this post by ScottHa. He uses SignalR and ASP.NET. | |||
|
feedback
|