I want to create a push application.
The service level is built on WCF.
Presentation Level Built on Asp.net 4
The service listens for events and updates its static property (general list of collections) at the data level. I will poll in my presentation layer and each time I call the WCF method and get an updated collection.
If the collection is unmodified, I return an empty list to save network bandwidth.
To preserve the round trips, I want the WCF service to post the event if and when the collection was changed. Is it possible? How to achieve this?
thanks
source share