What are different binding supported by WCF?Different bindings are:
Built- in bindings and custom bindings. When the built in or system provided bindings are not suited for the requirement, custom bindings can be issued.
The system - provided bindings are:
BasicHttpBinding: Uses HTTP for transport.
WSHttpBinding: Used for non duplex services.
WSDualHttpBinding: Used for Duplex services.
NetTcpBinding: Used for cross machine communication.
NetPeerTcpBinding: Used for multiple machine communication.
NetMsmqBinding: Queued binding Used for multiple machine communication.
|