What are different binding supported by WCF? - .NET WCF

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.
How do we use MSMQ binding in WCF? - .NET WCF
Message queue allows applications running at different times to send and read messages from queues....
Explain volatile queues and Dead letter queues. - .NET WCF
WCF also uses non transactional queues for storing messages. Such queues are volatile in nature.....
What are the various ways of hosting a WCF service? - .NET WCF
Ways of hosting WCF Service: Self hosting, Managed Windows services, Internet Information Services, Windows process activation service.....
Post your comment