This article explains the endpoints with address, binding and contract features. In my previous article, we saw what is the difference between web services and WCF? The series of article written on WCF are the following:

1. Endpoints

Endpoints is a client and server communication of the address.

end point

Each endpoint consists of the following three components:

1.1 Address (Where)

Address uniquely identifies the location of the services. Specified the location of the services URL (Uniform Resource Locator) like the following:

Example: Address

1.2 Binding (How)

A binding that specifies how the service can be accessed:

Types of Binding

BasicHttpBinding

WsHttpBinding

WsDualHttpBinding

WsFederationHttpBinding

NetTcpBinding

NetNamedPipeBinding

NetMsmqBinding

NetPeerTcpBinding

1.3 Contract (What)

A contract identifies that what are all the operations available in the service:

Types of Contract

Conclusion

This article helps you to understand the endpoints and its features in WCF.

Thank you for reading my articles.