WCF is a buzz word now a days. Full form of WCF is 'Windows Communication Foundation'. Though it is not that much difficult to create a wcf service, sometimes its a bit tricky to configure the service correctly. I want to share simple steps to create and configure a WCF service here. But before to that we should go through some important terms of WCF. EndPoint: A service must have atleast one EndPoint. It is the component of the service that communicates with the client and provides the service operations. Address: This is the address of EndPoint. It may look like general Web URL. Bindings: Bindings are what define how an endpoint communicates with the outside world. Each endpoint must have a binding. The binding, which is simply a set of properties, defines things like the transport pattern, the security pattern, and the message pattern. Though most of these things are optional, binding should specify transport at least. Contracts: Contracts define format and structure of t...
"... things I learn through work!!!!"