How to allow netNamedPipeBinding to work with the required UAC?

I have a service running under a local system account. I have an application running in a mode other than UAC. Both interact with each other because they act as both a server and a client.

Application, as the client can exchange data with the Service. But the service as a client cannot communicate with the application.

If I run UAC, the problem is resolved.

<customBinding>
   <binding name="net.pipe">
      <namedPipeTransport  />
    </binding>
</customBinding>
+3
source share
1 answer

Design Behavior. pah.

Great article cleans up named pipe binding Exploring WCF Name Binding

+4
source

Source: https://habr.com/ru/post/1745951/


All Articles