I am trying to implementing event notification in client when some data has been changed at server side so that the client doesn't have to poll every time. Earlier I am using WCF service in this with duplex channel and callback contract its possible to notify client if something happen.
[ServiceContract(CallbackContract = typeof(ILatchingEvent))]
But I am not sure how it should be implemented in WCF data service? Has anyone tried this.
I have heard about Notification Hubs from Azure which do the push notification, but I don't know how to implement it without using it in .NET client.
Any help is deeply appreciated.!