Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Communication between windows service and desktop app

I want to create a communication between a windows service and a desktop application on Windows 7. I read that named pipes are one way for communication between two processes. Can i use them for my purpose?

like image 345
petko_stankoski Avatar asked Oct 17 '11 08:10

petko_stankoski


1 Answers

sure you can use named pipes, WCF many other IPC methods.

for named pipe example among stack overflow questions, see here as well for some backgound:

Inter process communication using Windows service

also check this one: GUI and windows service communication

like image 84
Davide Piras Avatar answered Oct 21 '22 04:10

Davide Piras