Windows Communication Foundation (WCF) Basic tutorial
I am writing this blog for those who are new in WCF and Start Learning WCF. I am giving Example in C# language. This blog is created by just a R&D on web and collect useful material from different web sites. ( Please Understand Basics terms of WCF here. ) What Exactly is the Windows Communication Foundation (WCF)? WCF is a framework that abstract basically all kind of communications, from web services to socket binary communication, and you pretty much do what you wish with it. With WCF, we can define our service once and then configure it in such a way that it can be used via HTTP, TCP, IPC, and even Message Queues. We can consume Web Services using server side scripts (ASP.NET), JavaScript Object Notations (JSON), and even REST (Representational State Transfer). Here we start with some basic terminologies and definitions of WCF components. End Points : In simple words we can say that an End point is a access point to world for communicating with W...