Tagged Questions

6
votes
2answers
16k views

Expose a WCF Service through a Named Pipes binding

Intro: I successfully implemented a WCF Service hosted in a Windows Service a few days ago. The community here at StackOverflow helped me with the WSDL exposure here. I thank you once again. However ...
3
votes
3answers
655 views

WCF Multiple Apps using NetNamedPipe

I am trying to run multiple WCF Service hosting apps on the same Machine. I want to run multiple Applications - not multiple services in one application. var host = new ServiceHost(typeof(MyClass1), ...
3
votes
3answers
615 views

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 ...
2
votes
2answers
696 views

Connecting via named pipe from windows service (session#0) to desktop app (session #1)

Given: - the application - desktop GUI (WPF) .NET app - windows service watching for application (.NET also) The windows service periodically "pings" application to get sure it's healthy (and if ...
2
votes
1answer
2k views

WCF Named Pipe IPC

I have been trying to get up to speed on Named Pipes this week. The task I am trying to solve with them is that I have an existing windows service that is acting as a device driver that funnels data ...
1
vote
2answers
355 views

Securing the named pipe used by WCF

am newbie to both WCF and Named pipes. I need a way to securely communicate between a UI application and Windows Service on the same machine. Here's what I need: - Client UI application needs to send ...
0
votes
2answers
273 views

How to cross a session boundary using a WCF named pipe binding?

Windows 7 has a Session 0, where the services run, and the other sessions that interact with the users. WCF clients running in Session 0 can't see pipes exposed in session 1 unless:: Set the ...