Push technology: is there an open source implementation for windows?

I recently read about modern technology. Using its real-time streaming is very simple. I also saw an implementation called ajax push engine, but it works on Linux or a Mac server. I wanted to use this technology on asp.net.

So, is there any open source push technology implementation available for direct use on the Windows platform?

+7
cometserver
source share
1 answer

flew around
Orbited is an HTTP daemon optimized for long comet connections. It is designed for easy integration with new and existing applications. Orbited allows you to write real-time web applications, such as chat or an instant messaging client, without using any external plug-ins such as Flash or Java.

It can be installed as a Windows service. License - MIT.

MethodWorx
MethodWorx was developed from this article in the Draft Code articles . It is licensed by Open Source.

This is a packaged version of the library that we used in some projects to enable COMET polling or Long polling in some of our ASP.NET applications.

It uses an asynchronous HTTP handler to connect ASP.NET to wait for events by enabling real-time AJAX callbacks.

Lightstreamer
LightStreamer Moderato is free but not open source

Websync
WebSync is a scalable Comet server for compatibility with IIS standards using .NET. It is also available upon request as a hosted service. It is neither free nor open source, but has a free trial.

Other
There are several more open source Comet projects:

  • aspcomet The aim of this project is to develop a COMET implementation that does not require a special server, but can work in native IIS.
  • emerge toolkit . No project activity for some time.
+8
source share

All Articles