Questions tagged [net.pipe]
22 questions
26
votes
4 answers
Third party app breaks our WCF application
Our application uses WCF over named pipes to communicate between two processes (note: neither process is a Windows Service.) Our application has been running in the field without incident for a couple of years now.
We are now receiving reports that…

ObjetDart
- 343
- 3
- 6
9
votes
2 answers
Binding net.pipe to Default Web Site via IIS
When I attempt to set up appfabric to link up to my application and monitor and track and tract it, I get an error stating
“Workflow persistence is not functional because the net.pipe binding is not enabled for this web site.”
Now according to…

Ivan S
- 1,051
- 6
- 14
- 26
6
votes
0 answers
WF4 Service issue - ServiceManagement.svc
having an issue with WF4 service running in IIS.
Error in event viewer is "Failed to invoke service menagement endpoint at 'net.pipe://[servername]//servicemenagement.svc' to activate service '/A_WorkflowService.xamlx' \rException; 'The message with…

Pavdro
- 411
- 1
- 9
- 18
5
votes
2 answers
Can't get net.pipe binding working in IIS7.5 on Windows Server 2008 R2
I'm trying to configure net.pipe bindings on the server between 2 processes (on the same box). I have all this working locally in Windows 7, but on the production server (Windows Server 2008 R2), it fails to work.
I can verify that I have:
Added a…

Matt Roberts
- 26,371
- 31
- 103
- 180
4
votes
1 answer
Adding Service Reference to a net.pipe service
I have started learning WCF and have created a few test http services successfully. Now, i was trying to create a self-hosted WCF service using net.pipe binding. Below is the configuration file for the service:-

Abhishek Jain
- 2,957
- 23
- 35
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
3
votes
1 answer
What are named pipes (net.pipe) limitations?
I have a program that run in a loop, each iteration runs in a different thread and I'm creating new process that open new service host:
ServiceHost _host = new ServiceHost(_service, new Uri("net.pipe://localhost/" +…

Dor Cohen
- 16,769
- 23
- 93
- 161
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
1
vote
2 answers
Getting exception in wcf service - The protocol 'net.pipe' is not supported
I have deployment of WCF service on IIS 7 with support for Non-HTTP enabled
Under one project, I have exposed 8 different services with wsHttp endpoints which works fine.
I want to also expose NetNamedPipe bindings for the same services.
My sample…

Pravin
- 810
- 1
- 10
- 17
1
vote
1 answer
net pipe WCF service running in different user sessions with the same endpoint name
Based on everything I've read about WCF services using net pipes I expected to be able to use the address net.pipe://localhost/service/ on different user sessions as WCF does not use the name but a GUID.
Anyway when I launch several services I get a…

Ignacio Soler Garcia
- 21,122
- 31
- 128
- 207
1
vote
2 answers
WCF EndpointNotFoundException when running as NetworkService
I have a net.Pipe WCF service that is hosted by IIS (right now, in my VS2010):
(Global.asax):
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
…

zaitsman
- 8,984
- 6
- 47
- 79
1
vote
1 answer
net.pipe service host in WPF app
The contract:
[ServiceContract]
public interface IDaemonService {
[OperationContract]
void SendNotification(DaemonNotification notification);
}
The service:
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
public class…

EngineerSpock
- 2,575
- 4
- 35
- 57
1
vote
2 answers
Attempting to download metadata from 'net.pipe://localhost/abc.svc' using WS-Metadata Exchange. This URL does not support DISCO
Got this error while generating proxy by svcutil:
"Attempting to download metadata from 'net.pipe://localhost/abc.svc' using WS-Metadata Exchange. This URL does not support DISCO."
The service is compiled without error & working fine with http…

Pranav Singh
- 17,079
- 30
- 77
- 104
1
vote
3 answers
How to manage workflow service from ASP.NET using net.pipe binding
I'm trying to manage my workflow service that hosted on AppFabric through the standard named pipe endpoint. I successfully can do this from the console application, but when try to do the same from ASP.NET I get "Access is denied" exception.
I…

Mr. Pumpkin
- 6,212
- 6
- 44
- 60
0
votes
1 answer
C# WCF NetPipe firewall rules
I'm running service host with net pipe on one PC and I need to connect to this host from another PC in the network. Since net pipe doesn't have any port, I cannot find out what firewall exceptions must be implemented in on the PCs / network in order…

user1275513
- 357
- 2
- 8