Questions tagged [netnamedpipebinding]
89 questions
0
votes
1 answer
WCF client not working after add a customer binding endpoint to the same ServiceHost
extend WCF stuff hosting a NamedPipeServerStream to support communication with nodejs, it works if open a new ServerHost with endpoint "net.jsonpipe://localhost/JasonService".
a workable ServerHost with endpoint "net.pipe://localhost/MyService",…

Jun
- 1
- 1
0
votes
2 answers
NetNamedPipeBinding: parameter in pipe method is empty
I have a ServiceHost listening on a NetNamedPipeBinding endpoint. I have a service contract class with a single method which is being called by the client and handled by the server. The method (We'll call it PipeRequest()) has a Request parameter.…

Trevor
- 13,085
- 13
- 76
- 99
0
votes
1 answer
WCF Unique Base Addresses Problem
I have a problem where WCF is reporting...
net.pipe://192.168.0.100/SystemA/Service1.svc/mexPipe' could not be activated.
I have defined my base addresses as follows:
Service 1...

Remotec
- 10,304
- 25
- 105
- 147
0
votes
2 answers
How to properly close a WCF Netnamedpipebinding Channel?
I have a WCF Netnamedpipebinding from my application to an Office Addin. I have noticed that when the office app is busy doing something else that my application locks up when using a WCF method. I have added an example of my code. It appears that…

darbid
- 2,545
- 23
- 55
0
votes
2 answers
WCF: transform programmatic configuration into app.config
I have the following working programmatic configuration (server-side)
using (ServiceHost host = new ServiceHost(
typeof(RequestHandler),
new Uri[] { new Uri("net.pipe://localhost") }))
{
…

yas4891
- 4,774
- 3
- 34
- 55
0
votes
1 answer
WCF Same Service Contract in several Server Instances
I am trying to create multiple instances of the same WCF server (NetNamedPipes) (starting application several times) but running into a problem on starting the second instance... The server instances are using different pipe names and endpoint…

royalTS
- 603
- 4
- 22
0
votes
0 answers
How to consume a WCF service from SSIS using SSIS proxy user?
My project is using netnamedpipe service for performing CRUD operations on the databases and accessing database objects.
Problem: When I am consuming the NetNamedpipe service in SSIS and running the job through SQL server Agent by using Localhost…
0
votes
0 answers
Fast way to start selfhosted WCF service used for communication with native api
I'm working on a component used for generation of 3D CAD models. Since the api used to generate the model itself is native, I'm sticking with WCF/NetNamedPipeBinding for IPC. The component is being used by a webapplication (IIS). The client proxy…

YayOrNay
- 1
- 1
0
votes
2 answers
Using NetNamedPipe on a network?
We are building a window service that starts/stops other processes, and the communication between the UI and the service is with NetNamedPipe.
Every process have a host that can get shutdown call (still with NetNamedPipe in order to avoid port…

guyl
- 2,158
- 4
- 32
- 58
0
votes
1 answer
WCF client works as console application but running as Windows service, fails with EndpointNotFoundException
I wrote a C# console application to consume a local WCF service using NetNamedPipeBinding. The WCF service I consume is running as a local Windows application. My WCF client works fine as a console application. However, when I implement essentially…

user1389890
- 335
- 1
- 4
- 9
0
votes
0 answers
NetNamedPipeBinding support in Unity
Does the NetNamedPipeBinding (WCF) is supported in the new versions of Unity? If yes, can you please provide an example?
I was able to implement this example using the NetNamedPipeBinding in Visual Studio 15 (both the Client and the Server sides),…

Max Zemsky
- 162
- 1
- 2
- 15
0
votes
1 answer
Ordered delivery with NetNamedPipeBinding using oneWay calls
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 in which all the methods in the callback are marked…

Aseem Bansal
- 799
- 4
- 14
0
votes
1 answer
Optimizing WCF NetNamedPipeBinding performance
I have a WCF named pipe service that receives a byte array and writes it into an SQLite DB.
When I moved the SQLite insert logic into the WCF service the write performance decreased almost by half.
I went through various recommendation online but…

Igliv
- 214
- 3
- 16
0
votes
1 answer
Problems connecting to WCF Service via NetNamedPipeBinding
I'm having trouble figuring out how to get a named pipe WCF service to work.
The service is in a seperate assembly from the executable.
The config looks like this:

John
- 3,591
- 8
- 44
- 72
0
votes
3 answers
How to secure a WCF service using NetNamedPipesBinding so that it can only be called by the current user?
I'm using a WCF service with the NetNamedPipesBinding to communicate between two AppDomains in my process.
How do I secure the service so that it is not accessible to other users on the same machine?
I have already taken the precaution of using a…

Samuel Jack
- 32,712
- 16
- 118
- 155