am newbie to both WCF and Named pipes. I need a way to securely communicate between a UI application and Windows Service on the same machine. Here\'s what I need:
I have a duplex WCF service that relies on a consistent named pipe connection between the service and the client. It\'s sort of a publish/subscribe system where the client calls Subscribe on the servi
I am uploading a file in asp.net..via file upload control. I am taking the stream from posted file and convert to byte array and pass to service.
Is it possible to guarantee ordered delivery with oneWay calls using namedPipe binding? I have a WCF service/client communicating using namedPipe binding. The client is exposing a callback contract i
What\'s the use of the开发者_JAVA技巧 binding information field when adding a new net.pipe binding in IIS? I\'ve been told to enter a * in it, but I want to know what it\'s used for.Apparently the fie
I have an application consisting of several WCF services, some of which are implemented in Workflow Foundation (.NET 3.5), others just plain C#. These services communicate with each other over a netNa
I\'m trying to use WCF named pipes in a web site, and it\'s failing with errors: There was no endpoint listening at net.pipe://localhost/mypipename
I have been trying to get up to speed on Named Pipes this week.The task I am trying to solve with them is that I have an existing windows service that is acting as a device driver that funnels data fr
In Learning WCF, by Michele Bustamante, there is a section that describes a binding called the NetNamedPipes binding.The book says that this binding can only be used for WCF services that will be call
I have a service running under Local system accou开发者_如何学JAVAnt. I have an application that run in a non-UAC mode. Both interact with each other as both act as server and client.