I have a Windows Service which performs some data collection from a serial device connected to my PC. This Windows Service hosts a WCF service over named pipes which can then be used my one of my applications in order to query the serial data.
The problem is that I want to send log messages from the service to the application sometimes - for example I would like to send a log message to the application every time a certain value is received over the serial connection.
The WCF over named pipes is working really well for pulling service information from the application, but what I want to do is push some values from the service to the application every now and again in addition.
Any ideas?
AK