Simple Application Using WCF and Database

In this article I'm going to explain how we can write a WCF service and invoke it on to the client side.

I am making a simple application where a WCF service returns the information about leaders which are stored in database.

Note: In this demonstration I am only using default settings of WCF , many other important aspects of WCF like instance management, concurrency management, transaction etc… that are used extensively in real live projects will be demonstrated in subsequent articles . Here we will see how we can write a very basic WCF service and invoke it. [More]

WCF – next generation platform for distributed applications

Service based applications changed the development practices. Service oriented architecture provided a new way to look at the application development and took it one step ahead in development world.

Web service and Simple Object Access Protocol (SOAP) has made data transmission between different applications very easy without worrying about underlying architecture and platform detail. SOAP architecture provides good platform for secured data transmission over HTTP with that said, if you have to develop an application that is going to run over TCP then you would have to determine and develop application that is going to support that kind of network.

Windows Communication Foundation (WCF) supports various protocols like TCP/IP, HTTP and even Peer networking using mesh network topology. In other words, WCF contains everything that modern service oriented application need. [More]

Tags: , , , ,

WCF