The net.tcp binding is a Microsoft Windows Communications Foundation (WCF) protocol. The protocol is binary, secure, and reliable --- though these options are configurable.
Questions tagged [nettcpbinding]
474 questions
5
votes
0 answers
WCF throws SfxServerDidNotReply Error
We are working on a Silverlight 4/5 application which communicates with the server through a NetTcp WCF service, hosted by windows service.
On some occasions we get an SfxServerDidNotReply error
This is barely documented online. People who…

Stéphane
- 11,755
- 7
- 49
- 63
5
votes
2 answers
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 platform api or the Azure Management site isn't an…

Steve
- 31,144
- 19
- 99
- 122
5
votes
1 answer
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…

WebDude
- 6,125
- 5
- 33
- 44
5
votes
1 answer
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 sent on the wire?
Using netTcp is my message…

Remotec
- 10,304
- 25
- 105
- 147
5
votes
3 answers
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 server but for some reason it doesn't work in…

Tomas Jansson
- 22,767
- 13
- 83
- 137
5
votes
2 answers
Can you use WCF Data Services (ne OData, ne Astoria, ne ADO.NET Data Service) with NetTcpBinding?
I'm looking at creating a data query WCF service over a slow satellite connection and I really like WCF Data Services. The problem I see is that HTTP is a very verbose format and since everything I'm doing is internal and .NET, is it possible to use…

Simon Gillbee
- 3,932
- 4
- 35
- 48
5
votes
3 answers
WCF, Duplex callback, recieveTimeout netTcpBinding
Ive got a Host / Client WCF Service and client that is using netTcpBinding and a callback method.

PrimeTSS
- 2,683
- 3
- 23
- 26
5
votes
1 answer
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 and the
maximum number of connections allowed
…

user88637
- 11,790
- 9
- 37
- 36
5
votes
1 answer
Recover Callback channel after CommunicationObjectAbortedException thrown
We have (Multiple)Clients-(One)Server architecture for poker desktop game. We are using callback Notifications using callback Channels.
But sometimes because of internet connection drops, that particualr client gets disconected from server and that…

KomalJariwala
- 1,977
- 3
- 23
- 32
5
votes
2 answers
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 (and some documentation to prove it). Will…

Tallek
- 1,575
- 15
- 22
5
votes
3 answers
Does WCF message security actually encrypt message contents?
I have read the documentation provided at MSDN, and some other posts on this site. However, its still a bit unclear whether WCF (specifically, NetTcpBinding) will actually encrypt message contents when using message security w/ certificates. Does…

Sean Thoman
- 7,429
- 6
- 56
- 103
5
votes
2 answers
How to use a WCF Dual Service over the internet?
I followed this tutorial (at least based my WCF in this, coz I need then to work alike):
http://www.eggheadcafe.com/tutorials/wcf/b5ada8df-58c5-492f-b368-457b3a4f137c/notify-client-applications-using-wcf-callbacks.aspx
It's working very well on my…

Tanielian V. Barreira
- 305
- 4
- 11
4
votes
1 answer
WCF service hosted in IIS 7 - binding configuration settings are ignored
I have a WCF service operation that accepts a byte array as part of its data contract. The service is only exposed internally (not to the internet), and I want to increase the quotas to allow for a 10MB byte array.
The service is hosted in IIS7.…

Graham Clark
- 12,886
- 8
- 50
- 82
4
votes
1 answer
SSL Server Cert Present One name for WCF?
I have a self-hosted WCF service with TCP binding, now trying to layer on SSL.
The cert I got from the CA has two values for "Subject Alternative Name":
www.mysite.com
mysite.com
I only want to present "mysite.com" to WCF clients, somehow this…

Snowy
- 5,942
- 19
- 65
- 119
4
votes
2 answers
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 two.
Initially I've set up an endpoint using…

Avilan
- 608
- 2
- 6
- 23