WCF over named pipes

Hi I have a problem with the following scenario:

A Windows service is running, which starts several processes. These processes open the WCF service host through named pipe binding. The parent window service now tries to ping (connect) to child processes using the wcf proxy over the well known named pipe. It does not, however, say "Endpoint not found"

If I run the parent process as a console app, it works fine.

Any ideas? I was thinking about permissions, but the child processes have to inherit the permission of the service and they are also in the same session.

thanks Christoph

+2


source to share


2 answers


"Endpoint not found" may be because it cannot find an endpoint. Or it may be that it cannot find the configuration for the endpoint.



My best guess is that you are missing the client side configuration for the endpoint.

0


source


I don't have a solution, but the problem is that the service is running with elevated privileges, so the client must be elevated as well.



0


source







All Articles