Questions tagged [netnamedpipebinding]
89 questions
1
vote
1 answer
wcf file upload netnamedpipe pipe closed error
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.
I am getting this error:here was an error writing to the pipe: The pipe is being closed. (232, 0xe8).…

Ashok
- 145
- 2
- 19
1
vote
0 answers
Can we use NetNamedPipeBinding in WCF without using port?
I am trying to implement a demo to communicate between two applications on a same machine. So I choose NetNamedPipeBinding. And the doc of it shows that we need to assign the base address like 'http://localhost:8000/uesamples/service'
in…

kunyang
- 61
- 5
1
vote
1 answer
How do I get the best performance from a Windows/wcf Service in C#?
I'm currently working on a Windows Service that will be handling the acquisition of data from multiple measurement instruments connected via USB to my computer. It will be sending some data to an SQL database but I am also creating another…

Mark
- 768
- 3
- 8
- 26
1
vote
1 answer
Can not Host & Start WCF Service with netNamedPipeBinding in Windows Service on Windows 7
I'm using two applications built using C# on 4.5 .Net Framework
WPF Desktop Application
Windows Service
and want them talk to each other using IPC(Inter Process Communication) approach as they need to frequently share some data/object state based…

manvendra
- 461
- 2
- 4
- 15
1
vote
0 answers
WCF Service starts twice
I have a WCF service configured to use Net named pipe binding. Here is the configuration of the service.
…

Hari Narisetty
- 176
- 1
- 2
- 14
1
vote
2 answers
Under what circumstances does it make sense to run a WCF client and server on the same machine?
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 called exclusively from the same machine.
Under…

Vivian River
- 31,198
- 62
- 198
- 313
1
vote
2 answers
How to disable reliable session in netNamedPipeBinding in WCF?
How do I disable reliable sessions in a named pipe binding?

Rohit
- 3,610
- 7
- 45
- 76
1
vote
1 answer
Can't get WCF NetNamedPipeBinding Service Working/Exposed/Consumed in IIS
I have a WCF service that I need to expose using NetNamedPipeBinding in WCF. Due to certain restrictions, I am not able to self host as a windows service. It MUST go through IIS.
I feel I have exhausted all available resources to try to get my…

TheJediCowboy
- 8,924
- 28
- 136
- 208
1
vote
1 answer
Unable to start Windows Service that hosts WCF service with NetNamedPipeBinding binding
I am creating a windows service that is supposed to host a WCF service with NetNamedPipeBinding binding. Following is the code:
protected override void OnStart(string[] args)
{
var serviceType = typeof(IServeHi);
var namedPipeBinding = new…

Kabeer
- 4,138
- 7
- 40
- 62
1
vote
0 answers
netNamedPipeBinding with host and client in same application NOT WORKING
i have developed a simple Windows Forms app where i host a NetNamedPipeBinding service, and the same app is the client that tries to invoke a function in the service, but i got this error:
This request operation sent to net.pipe://service1/ did not…

eriveraa
- 27
- 1
- 5
1
vote
1 answer
WCF-NetNamedPipe's ChannelFactory
Update 20121214
consultation with the developers of the conflict service,
they use net.pipe://echonet as service address,
and use DuplexChannelFactory.
why it will block my Pipe?
Question:
I have a very simple WCF application.
Service and Client…

GeminiYellow
- 1,016
- 2
- 12
- 34
1
vote
1 answer
Client on non-admin user can't communicate using net.pipe with services
I have a client app that hosts a WCF service using net.pipe protocol. The client can't communicate with other WCF services which are running under the admin user.
I have read that you can't communicate using net.pipe between different users.
Is…

shlomtzi
- 11
- 1
- 2
0
votes
2 answers
WCF pipe connection aborted due to error #109
I am designing a WCF service and client with callback using named pipe, when the server process the request from the client, I got the error#109 and eventually the pipe connection got aborted. Below is the tracing file from the server side. In case…

tete
- 4,859
- 11
- 50
- 81
0
votes
1 answer
Security to Wcf Service hosted on windows service with NetNamedPipeBinding
I have created a WCF service which is hosted on a windows service over NetNamedPipeBinding protocol.Now I want to provide security to this service, as in users with username and passwords known only should access this service.So how do I provide a…

vinay singri
- 199
- 1
- 6
- 20
0
votes
0 answers
WCF NetNamedPipeBinding with sub-path and security
I'm refactoring an existing messaging system (developed in .NET Framework 4.5.2) to use NetNamedPipeBinding communication within internal components.
Using the tutorials I found, this setup works so far:
I configure the IIS website net.pipe binding…

Matthias Müller
- 3,336
- 3
- 33
- 65