Naor
Naor

Reputation: 24103

Is there a free open source that implements Comet or Push?

I am looking for a free implementation for Comet or Push. Here is an example of chat done by comet: http://www.phpchatsoftware.com/phpbb/ I have my own server.

Is there any thing like this?

P.S. I am using asp.NET, on server and jQuery on client.

Is there anything new? or maybe this is the last technological free open source achievement: http://www.codeproject.com/KB/aspnet/CometAsync.aspx ?

Upvotes: 4

Views: 1707

Answers (5)

300 baud
300 baud

Reputation: 1672

Have you checked out SignalR? And here is a working example of SignalR called JabbR.

Upvotes: 1

charfeddine.ahmed
charfeddine.ahmed

Reputation: 546

Have a look at Push Framework, an open source server development library. A Chat Client-Server application is among the demos.

Upvotes: 0

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.

Upvotes: 2

Egor Pavlikhin
Egor Pavlikhin

Reputation: 18001

WebSync has a free community edition, but it's limited to just 10 concurrent users. There are also PunHub and open-source erlycomet. I am not aware of any open source comet servers in .Net though.

Upvotes: 2

Chris Laplante
Chris Laplante

Reputation: 29668

According to this question, PokeIn is probably the best you will be able to do. It isn't open source, but there is a free community edition. Check it out: http://www.pokein.com/. Hope that helps.

Upvotes: 1

Related Questions