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?

link|improve this question

2  
Select the net/XHR tab in firebug and watch the magic happen :) – vascowhite Dec 10 '11 at 10:42
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.

2 Answers

up vote 1 down vote accepted

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:

{
    "r10":
    {
        "e":
       [
           {
               "event_type":1,
               "time_stamp":1323536485,
               "content":"Why the heck would you need to know the offsets of your bases?",
               "id":4070138,
               "user_id":12345,
               "user_name":"Some user",
               "room_id":10,
               "room_name":"Lounge\u003cC++\u003e",
               "message_id":2068566
           }
       ],
       "t":4070138,
       "d":1
    },
    "r7":
    {
        "t":4070138,
        "d":1
    }
}

Quite cryptic, but that's also to save on bandwidth. But you can clearly see in the "r10" part of the message, there is a payload of 'events'. "e" is an array with every event that can happen. In this case there's only a single new message ("event_type":1) that should be displayed, including the user ID and name.

Here's another poll with "event_type":2 (message edit), notice how this event contains the "message_edits":1 information.

{
    "r17":
    {
       "e":
       [
           {
               "event_type":2,
               "time_stamp":1323537342,
               "content":"Hi, anyone who can help me with Sencha Touch?",
               "id":4070234,
               "user_id":1234,
               "user_name":"Some user",
               "room_id":17,
               "room_name":"JavaScript",
               "message_id":2068592,
               "message_edits":1
            }
        ],
        "t":4070234,
        "d":1
    },
    "r7":
    {
        "t":4070234,
        "d":1
    }
}

If there are no new messages to display, the result looks like this:

{
    "r10":{},
    "r7":{}
}

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.

link|improve this answer
thank you. wow this is great, a lot to think about, what about using web services would this make the web application performance any better or will it be the same? – redoc01 Dec 10 '11 at 17:43
Sorry didnt read the last bit – redoc01 Dec 10 '11 at 18:03
feedback

If you are looking at writing a chat application, see this post by ScottHa. He uses SignalR and ASP.NET.

link|improve this answer
feedback

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