Comet implementation for ASP.NET?

Posted by Hitchhiker on Stack Overflow See other posts from Stack Overflow or by Hitchhiker
Published on 2008-09-15T18:56:59Z Indexed on 2010/04/13 15:03 UTC
Read the original article Hit count: 427

Filed under:
|
|

I've been looking at ways to implement gmail-like messaging inside a browser, and arrived at the Comet concept. However, I haven't been able to find a good .NET implementation that allows me to do this within IIS (our application is written in ASP.NET 2.0).

The solutions I found (or could think of, for that matter) require leaving a running thread per user - so that it could return a response to him once he gets a message. This doesn't scale at all, of course.

So my question is - do you know of an ASP.NET implementation for Comet that works in a different way? Is that even possible with IIS?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about iis