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 ...
5
votes
2answers
7k views
What is the maximum size that maxReceivedMessageSize can be set to for a NetNamedPipeBinding?
I noticed that 2147483647 seems to be a popular choice for maxReceivedMessageSize but is this the limit?
4
votes
1answer
181 views
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.
...
4
votes
1answer
3k views
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: ...
3
votes
3answers
654 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
2answers
447 views
Setting SPN on endpointaddress for NetNamedPipe service endpoint
I'm getting the "There was no endpoint listening at net.pipe://localhost" error as described in other places but I cannot seem to find a real answer.
This is a great identifier of the problem:
...
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
0answers
36 views
WCF with netNamedPipeBinding bad performance
I'm using a WCF service with netNamedPipeBinding to transfer a large amount of data (very long list of objects) to the client (which is on the same machine, off course).
The problem is that it takes ...
2
votes
2answers
146 views
Internal communication between a service and multiple user applications WCF C#
I'm currently working on a project in c# where I have a service running as LocalSystem, and a user application (tray app) running for each logged on user.
I need to have communications between the ...
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
477 views
How do I troubleshoot PipeExceptions and CommunicationExceptions in WCF?
I have an application consisting of several WCF services, some of which are implemented in Workflow Foundation (.NET 3.5), others just plain C#. These services communicate with each other over a ...
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 ...
2
votes
1answer
237 views
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 ...
2
votes
2answers
1k views
How can I communicate with WCF from Delphi using Named Pipes Binding
Can I use Delphi 2007 to communicate with a WCF service using the netnamedpipebinding ?
If so, then how?
1
vote
1answer
24 views
Reentrant duplex communication with WCF
I have a C# program which will have multiple instances that need to communicate with each other, executing commands and sending data back and forth. Right now, this is accomplished using WM_COPYDATA, ...
1
vote
2answers
100 views
How to improve serialization speed on wcf service?
Again a question about compression on wcf services.
I'm using netnamedpipe binding to send some entity objects to my calling application.
I know, that's a bad idea, but that's the way my customer ...
1
vote
1answer
123 views
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 ...
1
vote
2answers
364 views
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 ...
1
vote
1answer
230 views
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 ...
1
vote
1answer
244 views
WCF NamedPipe: PerSession-Single or Singleton-Multiple
I'm building web application (in this context the client) which talk with a different process (in this context the server) through a namedpipe wcf service (WCF 4).
After reading many articles I was ...
1
vote
2answers
354 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 ...
1
vote
1answer
433 views
How reliable is the netnamedpipebinding infinite receiveTimeout?
I have a duplex WCF service that relies on a consistent named pipe connection between the service and the client. It's sort of a publish/subscribe system where the client calls Subscribe on the ...
1
vote
2answers
340 views
Should I use the NetNamedPipe binding in WCF for security reasons?
The WCF documentation says that the "Net Named Pipe" binding can be used for fast interprocess communication on a single machine. It cannot be used for communication across machines.
I would like to ...
1
vote
2answers
125 views
Under what circumstances does it make sense to run a WCF client and server on the same machine?
In Learning WCF, by Michele Bustamante, there is a section that describes a binding called the NetNamedPipes binding. The book says that this binding can only be used for WCF services that will be ...
0
votes
1answer
47 views
WCF NetNamedPipeBinding TimeoutException on Windows Server 2008
I have a problem with WCF NetNamedPipeBinding. When I run my server and client code through Visual Studio 2008 on a Windows XP machine everything works fine. But as soon as I deploy my server as a ...
0
votes
1answer
63 views
Security to Wcf Service hosted on windows service with NetNamedPipeBinding
I have created a WCF service which is hosted on a windows service over NetNamedPipeBinding protocol.Now I want to provide security to this service, as in users with username and passwords known only ...
0
votes
2answers
66 views
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 ...
0
votes
2answers
128 views
NetNamedPipeBinding: parameter in pipe method is empty
I have a ServiceHost listening on a NetNamedPipeBinding endpoint. I have a service contract class with a single method which is being called by the client and handled by the server. The method ...
0
votes
1answer
121 views
WCF Unique Base Addresses Problem
I have a problem where WCF is reporting...
net.pipe://192.168.0.100/SystemA/Service1.svc/mexPipe' could not be activated.
I have defined my base addresses as follows:
Service 1...
...
0
votes
2answers
303 views
WCF: transform programmatic configuration into app.config
I have the following working programmatic configuration (server-side)
using (ServiceHost host = new ServiceHost(
typeof(RequestHandler),
new Uri[] { new ...
0
votes
1answer
245 views
WCF local machine ServiceHost and Administrator Privileges
Is there way to run self host a WCF service with ServiceHost on local user (no administrator privileges)? It needs only to be on the local computer.
I'm working on aplication which in future will be ...
0
votes
2answers
122 views
using netNamedPipe on a network?
we are building a windowService that start/ stop other process.
and the communication between the UI and the service is with NetNamedPipe.
every process have a host that can get shutdown call (still ...
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 ...
0
votes
1answer
350 views
wcf file upload netnamedpipe pipe closed error
I am uploading a file in asp.net..via file upload control. I am taking the stream from posted file and convert to byte array and pass to service.
I am getting this error:here was an error writing to ...
0
votes
1answer
291 views
Ordered delivery with NetNamedPipeBinding using oneWay calls
Is it possible to guarantee ordered delivery with oneWay calls using namedPipe binding?
I have a WCF service/client communicating using namedPipe binding. The client is exposing a callback contract ...
0
votes
0answers
117 views
Remote WCF Pipe Authentication for Intranet Administrators
My application consists of a Windows service and a client GUI application.
To control the service from the client, I started off with a WCF NetNamedPipeBinding, which worked great, but since I ...
0
votes
1answer
256 views
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.
0
votes
1answer
919 views
Problems connecting to WCF Service via NetNamedPipeBinding
I'm having trouble figuring out how to get a named pipe WCF service to work.
The service is in a seperate assembly from the executable.
The config looks like this:
<system.serviceModel>
...
0
votes
1answer
490 views
How to disable reliable session in netNamedPipeBinding in WCF?
How do I disable reliable sessions in a named pipe binding?
0
votes
3answers
299 views
How to secure a WCF service using NetNamedPipesBinding so that it can only be called by the current user?
I'm using a WCF service with the NetNamedPipesBinding to communicate between two AppDomains in my process.
How do I secure the service so that it is not accessible to other users on the same machine?
...
0
votes
1answer
2k views
Named pipe not found when using WCF netNamedPipeBinding
I am the developer of a WCF service. My test clients work very well with it. But when it comes to real clients (using the same client proxy), it fails. The same WCF service works with netTcpBinding, ...
0
votes
3answers
675 views
Anyone got IIS working reliably as a WCF client
I'm trying to get IIS6 to work reliably with a WCF service I have hosted in a separate Windows Service application on the same machine. Users connect to IIS via some HTTP exposed services, which is ...