Skip to main content

Posts

Showing posts with the label Web Service

Windows Communication Foundation (WCF)

What is WCF? Windows Communication Foundation (Code named Indigo) is a programming platform and runtime system for building, configuring and deploying network-distributed services. It is the latest service oriented technology; Interoperability is the fundamental characteristics of WCF. It is unified programming model provided in .Net Framework 3.0. WCF is a combined feature of Web Service, Remoting, MSMQ and COM+. WCF provides a common platform for all .NET communication. Advantages of WCF WCF is interoperable with other services when compared to .Net Remoting where the client and service have to be .Net. WCF services provide better reliability and security in compared to ASMX web services. In WCF, there is no need to make much change in code for implementing the security model and changing the binding. Small changes in the configuration will make your requirements. WCF has integrated logging mechanism, changing the configuration file settings will provide this functionality...

Web Services

What is Web Service? Web Service is an application that is designed to interact directly with other applications over the internet. In simple sense, Web Services are means for interacting with objects over the Internet. Web Service is Language Independent Protocol Independent Platform Independent It assumes stateless service architecture. History of Web Service or How Web Service comes into existence? As i have mention before that Web Service is nothing but means for interacting with objects over the Internet. Initially Object - Oriented Language comes which allow us to interact with two object within same application. Component Object Model (COM) which allows to interact two objects on the same computer, but in different applications. Distributed Component Object Model (DCOM) which allows to interact two objects on different computers, but within same local network. which allows two object to interact internet. That is it allows to interact between two object on...