I am trying to build a system in which a desktop application is running on my server machine and WCF service is hosted as Windows Service on the same system. WCF have below Service Contract:
[ServiceContract]
public interface Communication
{
[OperationContract]
void GetStatus(string message);
}
This Method is called by multiple clients. Clients sends a string as parameter to server. My query is, whenever client calls this method of service, this message should be displayed on the Windows application GUI running on server.
How to achieve this. I do not want to do polling. Any other method? I have searched net for the same, but I am confused now.