Questions tagged [netnamedpipebinding]
89 questions
2
votes
2 answers
Should I use the NetNamedPipe binding in WCF for security reasons?
The WCF documentation says that the "Net Named Pipe" binding can be used for fast interprocess communication on a single machine. It cannot be used for communication across machines.
I would like to know if using the Net Named Pipe binding will…

Vivian River
- 31,198
- 62
- 198
- 313
2
votes
0 answers
NetNamedPipeBinding channel.State == Opened but failing
I have am working on an application which uses NetNamedPipeBinding to communicate between a WSDualHttpBinding WCF service (ServiceA) and a Windows service (ServiceB) which are both on the same machine.
I have a proxy class in ServiceA which…

Guy Passy
- 694
- 1
- 9
- 32
2
votes
0 answers
WCF Services: netNamedPipeBinding
Tried to configure NetnamedPipeBinding in my webservice.

LaknathR
- 195
- 1
- 6
- 17
2
votes
1 answer
Is it possible to have a WCF client running in an ASPX call an SVC via net.pipe in another site on the same machine?
I have two web sites-- one with an aspx file, one with a wcf service with two end points, one http and one named pipes. They both run on the same machine, so they seemed like a candidate for using the net.pipe binding.
The aspx file creates a…

MatthewMartin
- 32,326
- 33
- 105
- 164
2
votes
0 answers
WCF NetNamedPipeBinding Service NorthwindService example vs MyService
I have complete exhausted resources on trying to get NetNamedPipeBinding for my WCF Service working. I was able to get the NorthwindService example working found here.
For the NorthwindService example, I have the following:
namespace…

TheJediCowboy
- 8,924
- 28
- 136
- 208
2
votes
2 answers
Pass Exception and Subclasses over NamedPipe
I'm trying to pass objects of type Exception (or one of it's subclasses) over a NamedPipe.
ServiceContract:
[ServiceContract]
public interface IWCFCallback
{
[OperationContract]
void sendException(Exception e);
}
it works fine when i use it…

Klaus Eckelt
- 676
- 4
- 12
2
votes
1 answer
WCF NetNamedPipeBinding Delay On Channel Open
I'm currently developing an application with a SOA architecture, with the services exposed as WCF services (.Net 4.0) hosted in IIS 7.5 on a Windows Server 2008 R2 Datacenter x64 VM (it is in fact an m1.small instance on Amazon EC2). These services…

Ross McCulloch
- 107
- 11
1
vote
2 answers
WCF pipe connection aborted with error:There was an error reading from the pipe: Unrecognized error 109
I am designing a WCF service with callback using named pipe binding. And when I call the service from the client, on the server side tracing it shows the error "There was an error reading from the pipe: Unrecognized error 109" and eventually the…

tete
- 4,859
- 11
- 50
- 81
1
vote
1 answer
Reentrant duplex communication with WCF
I have a C# program which will have multiple instances that need to communicate with each other, executing commands and sending data back and forth. Right now, this is accomplished using WM_COPYDATA, which is quite cumbersome. I would like to…

Paul Accisano
- 1,416
- 1
- 14
- 25
1
vote
2 answers
How to improve serialization speed on wcf service?
Again a question about compression on wcf services.
I'm using netnamedpipe binding to send some entity objects to my calling application.
I know, that's a bad idea, but that's the way my customer wants it to be implemented.
So right now, I have to…

Machine
- 80
- 2
- 9
1
vote
1 answer
WCF NetNamedPipeBinding TimeoutException on Windows Server 2008
I have a problem with WCF NetNamedPipeBinding. When I run my server and client code through Visual Studio 2008 on a Windows XP machine everything works fine. But as soon as I deploy my server as a Windows Service and install my client app in Windows…

templar112
- 23
- 1
- 4
1
vote
1 answer
WCF local machine ServiceHost and Administrator Privileges
Is there way to run self host a WCF service with ServiceHost on local user (no administrator privileges)? It needs only to be on the local computer.
I'm working on aplication which in future will be installed on multiple desktops, but currently it…

Andrew
- 147
- 3
- 8
1
vote
1 answer
WCF NamedPipe: PerSession-Single or Singleton-Multiple
I'm building web application (in this context the client) which talk with a different process (in this context the server) through a namedpipe wcf service (WCF 4).
After reading many articles I was thinking to create a pool of proxy connected to the…

SkyG
- 275
- 3
- 11
1
vote
2 answers
How to cross a session boundary using a WCF named pipe binding?
Windows 7 has a Session 0, where the services run, and the other sessions that interact with the users.
WCF clients running in Session 0 can't see pipes exposed in session 1 unless::
Set the SeCreateGlobalPrivilege - not an option for me
Show the…

Jader Dias
- 88,211
- 155
- 421
- 625
1
vote
1 answer
How reliable is the netnamedpipebinding infinite receiveTimeout?
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 service and gets put in a subscription list. Then, the…

Jieren
- 1,952
- 4
- 18
- 26