Questions tagged [netnamedpipebinding]

89 questions
4
votes
2 answers

WCF and NetNamedPipeBinding - AVG Antivirus

We keep having some customers getting a warning from AVG Antivirus about our application. Our application opens a standard NetNamedPipeBinding with WCF in C#, just for cross-process communication. Is this something we can workaround in some way? …
jonathanpeppers
  • 26,115
  • 21
  • 99
  • 182
4
votes
1 answer

Binding information field when adding a new net.pipe binding

What's the use of the 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.
Gerrie Schenck
  • 22,148
  • 20
  • 68
  • 95
4
votes
3 answers

Using WCF's net.pipe in a website with impersonate=true

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 that could accept the message. This is often caused by an incorrect address or SOAP action. See…
citizenmatt
  • 18,085
  • 5
  • 55
  • 60
4
votes
3 answers

The requested upgrade is not supported by "net.pipe://"

I am attempting to host a WCF net.pipe service within a Windows Service. I define the service in code, in the Windows Service's OnStart() function. I also create the client in a similar way - in code. I have seen this question asked but it always…
Guy Passy
  • 694
  • 1
  • 9
  • 32
4
votes
1 answer

Add mex endpoint to NetNamedPipeBinding

I'm trying to expose an interface through NetNamedPipeBinding. Here's what I do: try { //load the shedluer static constructor ServiceHost svh = new ServiceHost(typeof(MyClass)); var…
Arsen Zahray
  • 24,367
  • 48
  • 131
  • 224
4
votes
1 answer

How to host a WCF service in a web application with netNamedPipeBinding and WAS on Windows Vista

I am trying to host a WCF service with netNamedPipeBinding in a web applicaion on a Vista machine. I enabled the non-HTTP service activation as described in this article: http://msdn.microsoft.com/en-us/library/ms731053.aspx I configured the service…
veertien
  • 457
  • 5
  • 18
3
votes
2 answers

No endpoint listening at net.pipe exception

I have many WCF services and I need to call one service from another. I decided to use netNamedPipeBinding for this purpose. My web.config file looks like this. (I have not copied irrelevant stuff here.)
Learner
  • 4,661
  • 9
  • 56
  • 102
3
votes
0 answers

Consuming WCF service using net named pipe binding in asp .net core 2.0 api

Is it possible to consume WCF service using net named pipe binding in asp .net core 2.0 api? There is always option to make WCF service to use http enabled binding. But I have a specific requirement to do that? I didnt find any useful resources on…
prashant
  • 2,181
  • 2
  • 22
  • 37
3
votes
0 answers

How to avoid vulnerability detected for netnamedpipeBinding using serface analyzer tool

I am new to WCF and Named pipes. we have created one WCF service, one host application to host the WCF service and UI application. UI application need to call methods of WCF service to perform some action and also need to receive message from the…
user3106005
  • 179
  • 3
  • 20
3
votes
1 answer

How to allow netNamedPipeBinding to work with requiring UAC?

I have a service running under Local system account. I have an application that run in a non-UAC mode. Both interact with each other as both act as server and client. Application as client can communicate with Service. But Service as client cannot…
Rohit
  • 3,610
  • 7
  • 45
  • 76
3
votes
1 answer

How to correctly set security for NetNamedPipe?

I have a WCF service with NetNamedPipe for interprocess communication and I would like to add security on it. Everything works great without security, but when I am trying to use tranport security I am getting "InvalidCredentialException: The server…
user2126375
  • 1,594
  • 12
  • 29
3
votes
0 answers

WCF Named Pipes: Streaming (Configuration) issue

I'm building a WCF services to transfer large files (~8 Gig) between two processes by using named pipes. I've got the concept working to transfer small files in streaming mode. Although for larger files i have to increase the…
360
  • 31
  • 5
2
votes
3 answers

View current opened netNamedPipe channels?

Is there any way I can determine which netNamedpipe channels are currently open? This will help me debug my WCF Client/Server and make sure I am closing my channels properly. This is similar to the netstat tool for network connections, but for…
Ryan R
  • 8,342
  • 15
  • 84
  • 111
2
votes
1 answer

What might cause a WCF NamedPipe Channel to become faulted (at the server end?)

I apologise if this seems a little basic, but I'm new to WCF - and also to interprocess communication in general. Details of my Setup I'm using a NetNamedPipeBinding in my WCF "server", which is part of an application that runs as a windows…
Daniel Scott
  • 1,758
  • 16
  • 13
2
votes
1 answer

How to use WCF NetNamedPipesBinding for communication between processes only in same users' logon session?

I'd like to have two processes running within the same user's logon session communicate via WCF. NetNamedPipesBinding seems the most appropriate for this. BUT there could be multiple users logged in and running these processes, so I want a way to…
Rory
  • 40,559
  • 52
  • 175
  • 261