1

The netTcpBidning has a reliable property, but the documentation doesn't state what it does.

For instance: Do it send keep-alives over the connection? Do it reconnect if connection is lost?

jgauffin
  • 99,844
  • 45
  • 235
  • 372

1 Answers1

2

Try

How to get reliable call-backs with WCF using NetTcpBinding

and

http://netindonesia.net/blogs/kasim.wirama/archive/2007/12/12/implementing-reliable-session-in-wcf.aspx

Community
  • 1
  • 1
MattC
  • 3,984
  • 1
  • 33
  • 49
  • Neither of those pages says anything about reconnect attempts. Or am I missing something? – jgauffin Nov 01 '10 at 09:41
  • TCP is reliale by nature I think you need to read up on the difference between transport and message reliability. http://codeidol.com/csharp/wcf/WCF-Essentials/Reliability/ – MattC Nov 01 '10 at 10:29
  • And http://msdn.microsoft.com/en-us/library/ms731375.aspx seems to indicated that some comminucation is required before the channel is faulted. – MattC Nov 01 '10 at 10:32