How do modern implementations of Comet/Reverse AJAX work? Any stable C# WCF or ASP.NET implementations?
What is the correct way (or best) way to implement Comet, HTTP Push, or Reverse AJAX?
What is the correct way (or best) way to implement Comet, HTTP Push, or Reverse AJAX?
I made a simple app with SignalR for testing. When the page loads it calls a function on the server, that function then calls a client function that prints a message on the screen. I did that to check that both the client and server function works and SignalR communication works ok.
PLEASE HELP!! Can’t figure out why this simple code given by MSDN doesn’t work….
I have a web service that performs some operations. When an event occurs I will like to notify the clients. The problem that I have is that I am able to connect from the client to the server but not the other way around because clients happen to be behind a NAT (router). Currently I am making a request every minute to check for notifications. It would be nice if I can have a technique where I could notify the clients faster without having to make so many unnecessary request.