Related questions
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.)
<services>
<…
How to host net named pipe binding enabled wcf application in iis?
I have a following configuration in my wcf service
<endpoint address="" binding="netNamedPipeBinding"
contract="WcfWithNamedPipe.IService1"
bindingConfiguration="WcfWithNamedPipe.netNamedPipeBinding">
</endpoint>
can any one suggest me how to host this wcf service in iis using netNamedPipe binding?
Could not find default endpoint element
I've added a proxy to a webservice to a VS2008/.NET 3.5 solution. When constructing the client .NET throws this error:
Could not find default endpoint element that references contract 'IMySOAPWebService' in the ServiceModel client configuration section. This might be because …