tags:

views:

32

answers:

1

I have an WPF application. The problem: need program(daemon, service) that send signals by network to my wpf application and fires some events in real time. Need recomendations how to write this service.

+3  A: 

I would recommend looking into WCF.

This would allow you to use a variety of transport mechanisms, and is really the preferred IPC technology for .NET at this point. It really should replace remoting for any new development.

Reed Copsey