Tagged Questions
The net.tcp binding is a Microsoft Windows Communications Foundation (WCF) protocol. The protocol is binary, secure, and reliable --- though these options are configurable.
9
votes
2answers
5k views
Detecting Client Death in WCF Duplex Contracts
I'm trying to build a SOA where clients can perform long running queries on the server and the server responds using a callback.
I'd like to be able to detect if the client disconnects (through user ...
8
votes
1answer
140 views
What is the simplest way to implement encryption in WCF when using the netTcpBinding?
I am implementing a WCF service which will be used (in part) within a private LAN.
I will be using netTcpBinding and would like to implement some form of security on the communications, more ...
7
votes
2answers
3k views
what is the global.asax Application_Start equivalent when using WAS in IIS7
I'd like to use the netTcpBinding for my WCF application which is currently hosted in IIS7, which means configuring it to use WAS instead. This is fairly straight forward however, my application ...
7
votes
2answers
5k views
What exactly do I need to do to host a WCF service in IIS 7.0 using netTcpBinding?
I've been trying for more than a week without any success at all, to host a very simple HelloWorld-like wcf service using netTcpBinding.
With http, everything is ok. I can access my service even from ...
6
votes
1answer
1k views
WCF NetTcpBinding Security - how does it work?
encountered the following problems trying to work through the quagmire of settings in WCF...
I created a WCF client server service using a NetTcp binding. I didn't make any changes to the security ...
6
votes
4answers
821 views
How can I find a TCP port that is free with NetTcpBinding (WCF) (so a server can bind to it)
Find the next TCP port in .Net says how to do this in raw .net, but not how to safely to this with WCF.
In my unit tests, I need to use the NetTcpBinding, I do not wish to hard code the port it is ...
6
votes
2answers
680 views
.net distributed grid computing migration, recommendations on libraries, architecture
I have a c# multi-threaded monte carlo simulation, the application is already structured such that it can be partitioned by into Tasks that execute independently, a TaskController executes Tasks, ...
5
votes
1answer
164 views
Why is it so much harder to enable SSL (Transport security) over net.tcp than HTTP?
Implementing a web service that uses Transport-level security with WCF over HTTP is pretty easy: Enable SSL for my WCF service
Implementing a web service that uses Transport-level security with WCF ...
5
votes
1answer
174 views
C# WCF NetTCPBinding Blocking Application
I have a basic buddylist type application which is a pub/sub deal in WCF. My problem is one or two of the calls are long running and this blocks up the entire server application (gui updates etc).
...
5
votes
2answers
1k views
Mono WCF NetTcp service takes only one client at a time
While trying to build a client-server WCF application in Mono we ran into some issues.
Reducing it to just a bare example we found that the service only accepts one client at a time. If another client ...
5
votes
4answers
5k views
netTcpBinding or wsHttpBinding
I have a WCF Service hosted as Windows Service and client is an ASP.Net application consuming WCF Service methods.
In process of implementing security, I am confused over which among ...
5
votes
2answers
2k views
netTcpBinding without windows credentials?
I've got a machine control application where I have a single client computer and 5 server boxes communicating on the machine subnet. There is no domain controller. I would like to use netTcpBinding ...
4
votes
2answers
486 views
Azure: Intra-WebRole Communication (netTcpBinding) with Full-IIS
I need to change some configuration settings on-the-fly in a Windows Azure project - and they need to be changed via a web service call (updating the application's configuration either via the ...
4
votes
1answer
477 views
Can you do NetTcpBinding in code? Should you?
WCF newbie here... I'm trying to self-host a WCF service using NetTcpBinding. Based on the MSDN "how-to" tutorial I have done all the binding in code, which I then changed from WsHttpBinding to ...
4
votes
5answers
995 views
WCF How much faster is TCP than HTTP
I understand that TCP is faster than HTTP for WCF but I'm interested to know by how much. I have a performance issue with a large application that uses HTTP and am considering whether moving to netTcp ...
4
votes
3answers
1k views
Can I add a Service Reference with netTcpBinding in WCF?
Is it possible to add a service reference in visual studio, which generates the local proxy class to call the WCF service when using the netTcpBinding?
As I understood it, the service reference ...
4
votes
1answer
390 views
What does the term “pending dispatch” means?
According to MSDN , the "MaxConnections" parameter means:
The NetTcpBinding.MaxConnections
property controls the maximum number
of connections to be pooled for
subsequent reuse on the client ...
4
votes
1answer
766 views
WCF - Why netTCPBinding works fine with Kerberos authentication without any SPN setting?
In one of our networks we are utilizing the netTCPBinding. The WCF service hosted in windows service that run as a domain account.
From the event viewer I can see that my WCF service uses Kerberos ...
4
votes
1answer
2k views
What's the fastest possible security configuration for netTcpBinding?
I'm running a WCF service that, among other things, is used as the back end for a web site. Because both the web site and the WCF service are running on the same machine, and in the interests of ...
3
votes
1answer
40 views
WCF Application - need “app start” code for both http and tcp bindings
I have a WCF application that requires some app initialization code to fire when the app starts. Currently the code sits in my Application_Start method in global.asax.cs:
protected void ...
3
votes
1answer
365 views
Is it possible create a scalable WCF service with thousands of long-running TCP connections?
I'm attempting to create a WCF service where several thousand (~10,000) clients can connect via a duplex NetTcpBinding for extended periods of time (weeks, maybe months).
After a bit of reading, it ...
3
votes
2answers
401 views
Can I use netTcpBinding for WCF services hosted outside of IIS?
My WCF service is being hosted as a Windows managed service, so I'm unsure of whether or not I can still use the netTcpBinding. I've tried following a couple of guides at MSDN, but for some reason my ...
3
votes
1answer
620 views
WCF Service call working with basicHttpBinding but fails with netTcpBinding
(Please read comment as i have a fix)
Hi,
I have created a WCF Service that i am hosting in IIS 7.5 on Windows 7 using .net 4.0
The service is hosted both on http and net.tcp.
...
3
votes
3answers
588 views
Is there any difference in hosting net.tcp wcf services under Windows 7 and Windows 2008 Server in IIS?
I have a situation where I can't host a service using net.tcp under windows 7 but it works fine on windows 2008 server. I have enabled WAS, and made the same settings in both windows 7 and windows ...
3
votes
1answer
457 views
When does WCF NetTcpBinding need full trust on the client?
I'm using WCF to communicate to several servers.
For my local server netTcpBinding works like expected, no problems.
But when I try to connect to my remote server (Azure) using the following ...
3
votes
2answers
819 views
WCF - is it bad practice to leave a channel open for a long time?
I'm just learning the ropes around WCF. What I was planning to do was have a duplex channel open between a client and server using NetTcpBinding, and keep that open indefinitely so that the server ...
3
votes
2answers
2k views
WCF - How to configure netTcpBinding for NTLM authentication?
I know how to configure basicHttpBinding for NTLM authentication, but can't figure out a way to do the same for netTcpBinding.
Does netTcpBinding support NTLM? If so, how to force WCF service to use ...
3
votes
3answers
1k views
Connecting to a WCF Service in PHP that has a a NetTCP Binding and a BasicHttpBinding
I have a WCF service. It has multiple clients and three endpoints. The endpoint bindings are nettcp, wsHttp and basicHttp. If I attempt to connect to it via php'd builtin SoapClient class like so:
...
3
votes
1answer
519 views
How to get reliable call-backs with WCF using NetTcpBinding
I am planning to use the NetTcpBinding for an application that needs to keep a hand-full of clients in sync.
Whenever there is a change of state at the server, all the connected clients must be ...
3
votes
2answers
725 views
When creating a WCF Service with NetTcpBinding, use endpoint “localhost” or machine's host name?
I have a WCF service that uses the NetTcpBinding and is running within a Windows service. Remote clients connect to this service. So far, I have defined the endpoint to use "localhost".
If the host ...
3
votes
1answer
639 views
WCF - Socket connection not closed by using WS-Compression with net.tcp binding
Recently I've been working on a WCF app and needs some functionalities to compress the soap message body, so that the size of response from service should be reduced.
After some research, I found an ...
3
votes
1answer
1k views
Is it possible to use netTcpBinding with the VS 2008 development server?
Is it possible to have a WCF service configuration like this:
<service behaviorConfiguration="WcfService1.Service1Behavior"
name="WcfService1.Service1">
<endpoint address="" ...
2
votes
2answers
98 views
Can't add service reference for WCF service with netTcpBinding hosted in IIS
I have the following configuration for a service which I've deployed to IIS. I can add a service reference for the service using the URL to the wsHttpBinding endpoint, but I cannot add it using the ...
2
votes
3answers
124 views
WCF net.tcp connection always fails
I tried to setup a service for testing using a net.tcp binding. I also set a http endpoint. The configuration is as follows:
<system.serviceModel>
<behaviors>
...
2
votes
1answer
368 views
CommunicationObjectAbortedException in WCF service channel while multiple data load
I am using WCF service in my client-server application and I am facing following error while communication between server and client.
Error Message =>> ...
2
votes
2answers
147 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
4answers
320 views
Can't get netTcpBinding requests to show up in Fiddler
I have a WCF service that has two endpoints. One with basicHttpBinding and one with netTcpBinding. Here is my config...
<services>
<service name="SomeService.Service">
...
2
votes
1answer
1k views
WCF NetTCPBinding vs HttpBinding difference in data sent on wire
Say I have a service exposing two end points, 1st is a NetTCPBinding the second is any flavour of HttpBinding. They both implement exactly the same service contract.
What is the difference in what is ...
2
votes
1answer
322 views
WCF netTCPBinding
WCF's netTCPBinding is "secured by default". As I understand it this means that..
Callers are authenticated using their windows credentials.
Messages are signed
Messages are encrypted.
However, I ...
2
votes
1answer
236 views
Certificate invalid forb netTCP in WCF
I'm trying to get my WCF service to use certificate-based encryption in my local environment so that it'll talk to machines in different domains when its out in the live environment. I had the service ...
2
votes
2answers
234 views
Is there a performance issue with hosting multiple WCF services on the same port
I have 2 WCF services going through the same TCP port.
Both services are self-hosted, one attaches to net.tcp://localhost:8700/DataAccess another to net.tcp://localhost:8700/Messages
Will I gain any ...
2
votes
1answer
620 views
Problem while communicating with WCF service using netTcpBinding
I have a WCF service run on Windows Server 2008 RC2 IIS 7 with no firewall. When I trying to call it with netTcpBinding binding, I get this exception:
System.TimeoutException: The open
operation ...
2
votes
1answer
2k views
What is the purpose of WCF reliable session?
The documentation around this topic is poor. I use WCF services with NetTcpBinding hosted in Windows service. The problem is that a session is dropped when it is inactive for some time. What I need is ...
2
votes
1answer
977 views
WCF - Disabling security in nettcpbinding (c#)
I'm trying to make a self hosted WCF app that uses nettcpbinding but works in an environment without a domain.
It's just two regular windows pc's, one is the server and the other one will be the ...
2
votes
1answer
2k views
NetTcpBinding with Streaming and Session
I’m trying to set up a WcfService with the use of NetTcpBinding. I use Transfer mode Streamed since I will transfer large files. I need to use Session, and I have read that NetTcpBinding supports ...
2
votes
2answers
2k views
Windows Authentication / Encryption in WCF With NetTcpBinding
I'm trying to understand how windows authentication / encryption works with the NetTcpBinding in WCF. I need to know exactly what encryption algorithm is used to encrypt the data going across the wire ...
2
votes
4answers
1k views
What WCF binding is most performant?
I have to get the maximum throughput performance in my WCF service. In one of my tests the service below got only 50k data items per minute using NetTcpBinding. Would a disconnected binding like ...
2
votes
2answers
2k views
Can two applications share same WCF NetTcpBinding port if they use different end point addresses?
I have a Client and Server scenario, where a service is installed on the client and another service on the server. I have no issues when these are installed on different machines. However, I would ...
2
votes
2answers
3k views
WCF with netTcpBinding and Certificate transport security
I need to secure a WCF service that uses netTcpBinding and connects directly with a Windows Forms based application. I only need it to be secured at the transport layer.
I'm pretty sure that I have ...
2
votes
1answer
540 views
does WCF's NetTCPBinding supports Socks Proxy?
I've got a client/server WCF application I want to deploy in a corporate environement.
They usually don't allow direct Internet connections, so I must use their SOCKS proxy.
Is it possible to use ...