Tassadaque
Tassadaque

Reputation: 8199

Reverse ajax Comet/Polling implementation for ASP.NET MVC?

I am looking for ASP.Net MVC implementation for reverse ajax comet/polling. Can anyone provide some good link or tutorial

Regards

Upvotes: 1

Views: 1866

Answers (2)

Jerod Venema
Jerod Venema

Reputation: 44642

Check out WebSync, a reverse AJAX/Comet server for .NET.

www.frozenmountain.com/websync/

Upvotes: 2

Zuuum
Zuuum

Reputation: 1485

I suggest you to check PokeIn library.

PokeIn gives you an enhanced JSON functionality to makes your server side objects available in client side. Simply, it is a Reverse Ajax library which makes it easy to call JavaScript functions from C#/VB.NET and to call C#/VB.NET functions from JavaScript. It has numerous features like event ordering, resource management, exception handling, marshaling, Ajax upload control, mono compatibility, WCF & .NET Remoting integration and scalable server push.

There are 2 ASP.NET MVC samples on the link above.

Upvotes: 3

Related Questions