Handling events from a Windows Service in a Windows Forms app

  • Thread starter Thread starter Jon Sequeira
  • Start date Start date
J

Jon Sequeira

I'm interested in handling events on distributed desktops, raised by a .NET
Windows service running on a server in the same Windows network.

I have no idea where to begin.

Can anyone point me in the right direction?

Any advice is appreciated. Thanks.

Jon
 
You can use .Net Remoting to implement this:
1. Desktop applications will call Service application using .Net Remoting to
subscribe to events
2. Service application will propagate events to desktop applications using
..Net Remoting

Another, but more complicated solution: MSMQ.
 
Back
Top