netnamedpipebinding

Getting EndpointNotFoundException with NetNamedPipeBinding in C#; Need To Create Global Named Pipe

杀马特。学长 韩版系。学妹 提交于 2019-11-29 14:17:50
I am running a windows service to which I send messages over a NetNamedPipeBinding. The messages are send from a client application which is triggered by a GPO. I just installed the service and client on a new server and I'm getting the following message: System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at net.pipe://localhost/VOXAServices/VOXADefaultPipe that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. There is no inner exception. If I run the client application by double

Expose a WCF Service through a Named Pipes binding

谁说胖子不能爱 提交于 2019-11-27 13:45:01
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 recently I found out that there is another potential client for this service this time located on the same machine as the service and this lead me to think I should add another endpoint with the namedPipesBinding. Named pipes seem to be the best solution for intra-machine communication as far as I am concerned. Please correct me if this is wrong. Problem: I need to expose another endpoint for the

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

不羁岁月 提交于 2019-11-27 08:09:13
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 it's not winservice will restart it). I was going to implement "pinging" via named pipes. To make things simpler I decided to do it with WCF. The application hosts a WCF-service (one operation Ping returning something). The windows service is a client for this WCF-service, invokes it periodically based on a timer. That's all in Windows 7. Windows service is running under LocalService (in session#0).

Expose a WCF Service through a Named Pipes binding

ε祈祈猫儿з 提交于 2019-11-26 16:28:20
问题 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 recently I found out that there is another potential client for this service this time located on the same machine as the service and this lead me to think I should add another endpoint with the namedPipesBinding. Named pipes seem to be the best solution for intra-machine communication as far as I

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

谁说我不能喝 提交于 2019-11-26 14:05:59
问题 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 it's not winservice will restart it). I was going to implement "pinging" via named pipes. To make things simpler I decided to do it with WCF. The application hosts a WCF-service (one operation Ping returning something). The windows service is a client for this WCF-service, invokes it periodically