Hi,
I'm developing some kind of server service who gets in action and stop on an specific range of time, I need to write a monitoring app to receive some status text sent from the service in the same local host.
It's the first time I need to comm between processes, I've been looking for some methods, wich do you believe is the best for this case? why? pros and cons for each one?
- Remoting
- Named pipes
- Windows messages
- local tcp connection
- Database table log (I'm using a database so it's another option)
- Datafile on disk
Edit: I'm using .net 2 so the great wcf solution doesn't work for me :(