ASP.NET asynchronous controllers and long polling

1.9k Views Asked by At

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 decent scaling for long polling pages?

3

There are 3 best solutions below

0
On BEST ANSWER

I would say take a look at signalR. Nodejs for iis is also an option

0
On

See ASP.NET MVC 3 real time events.

To make scaling easier/less of an issue I'd recommend using a dedicated realtime server (see this realtime technology guide; something that has been built from the ground up with realtime communication in mind.

0
On

If you are looking for a pro solution with built in websocket, pick PokeIn