Praveen Prasad
Praveen Prasad

Reputation: 32117

Comet programming and asp.net

i want to push data to user browser if an event happens on browser. with commet programming we can do this. http://en.wikipedia.org/wiki/Comet_%28programming%29

are any good tutorials available on net??

Upvotes: 3

Views: 1087

Answers (5)

Martin Buberl
Martin Buberl

Reputation: 47164

There is an open source ASP.NET comet implementation called aspComet on GitHub. The solution comes with a sample chat project you could check out to get started.

Upvotes: 1

BigbangO
BigbangO

Reputation: 820

you should try PokeIn comet ajax library for ASP.NET

Upvotes: 2

Jerod Venema
Jerod Venema

Reputation: 44642

Check out WebSync, a full comet server for .NET.

There are lots of tutorials available too.

Upvotes: 2

Andreas Jansson
Andreas Jansson

Reputation: 3307

I think the best place to start is the Ajax Patterns page on Comet. Also, you might want to have a look at Dojo's CometD project. I've been playing with comet a bit, but there are some browser (as well as server) bugs that makes it inherently difficult, along with the fact that comet is directly opposite to the intended usage of HTTP (client sends request, server responds).

Upvotes: 1

Matt
Matt

Reputation: 41832

There seem to be a lot of Comet related projects on GitHub: http://github.com/search?q=comet&type=Repositories&x=0&y=0. I don't see any that are ASP.NET or C#, but you can get an idea of how things work from the other implementations.

Upvotes: 1

Related Questions