I have a client-server application - wherein the server is essentially an ASP .NET web application and the distributed clients are desktop applications.
The clients need to receive some data from the server - when there is new data for the client. Right now, the way this is done is - the client keeps querying a web service every x minutes 9say 2 minutes) and keeps checking if there's new data for the client.
Ideally, the way it should work is that the desktop app should receive updates as and when they are available, it need not pull from the server; instead the server should be able to push to the client.
How do I go about doing this - given the architecture of the solution - a web application needs to push data to desktop applications (clients) in the same network (a LAN)?