What is the difference between TcpBinding and HttpDualBinding for Callback in WCF?
Loading
What is the difference between TcpBinding and HttpDualBinding for Callback in WCF?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munesh SharmaPosted Sep 29, 2015, 1:25 AM
Sujeet SumanPosted Sep 29, 2015, 12:47 AM
Manas MohapatraPosted Sep 28, 2015, 2:23 PM
Mukesh KumarPosted Sep 28, 2015, 2:17 PM
NetTcpBinding
This binding provides secure and reliable binding environment for .Net to .Net cross machine communication. By default it creates communication stack using WS-ReliableMessaging protocol for reliability, TCP for message delivery and windows security for message and authentication at run time. It uses TCP protocol and provides support for security, transaction and reliability.
WSDualHttpBinding
This binding is same as that of WSHttpBinding, except it supports duplex service. Duplex service is a service which uses duplex message pattern, which allows service to communicate with client via callback.
In WSDualHttpBinding reliable sessions are enabled by default. It also supports communication via SOAP intermediaries.