0% found this document useful (0 votes)
32 views1 page

WCF

WCF (Windows Communication Foundation) is a Microsoft framework that allows applications to communicate with each other through endpoints. It provides a common platform for communication that was previously handled through technologies like ASMX, .NET remoting, and COM+. WCF services expose functionality through endpoints that clients communicate with. Configuring an endpoint requires specifying an address, binding, and contract where the address is a URL, binding defines the communication method, and contract provides endpoint information. Channels are then used to receive and transform data between endpoints.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views1 page

WCF

WCF (Windows Communication Foundation) is a Microsoft framework that allows applications to communicate with each other through endpoints. It provides a common platform for communication that was previously handled through technologies like ASMX, .NET remoting, and COM+. WCF services expose functionality through endpoints that clients communicate with. Configuring an endpoint requires specifying an address, binding, and contract where the address is a URL, binding defines the communication method, and contract provides endpoint information. Channels are then used to receive and transform data between endpoints.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

WCF (Window Communication Foundation) is a solution for developers to work in distributing environment.

WCF mainly for make communication between applications. Before WCF, the technologies to make communication between applications were ASMX, .NET remoting, and COM+. WCF provides a common platform for all .NET communication. WCF is a framework for developing, configuring, exposing, and hosting services. All service providers were agree on SOAP concept for making communication between application before WCF. The idea of WCF is a combination of SOAP and web service. There are two categories of classes in WCF. y y Service model classes handle configuration and validation. Channel layer classes handle things such as communication and data transformation.

WCF services expose functionality through one or more endpoints. Clients communicate with the service's endpoint. In configuring an end points there are three components require. y y y Address Binding Contract

These three components are interrelated. An address mean an URL. Binding tells the WCF runtime how your endpoint communicates. Contracts mean it gives the information of working endpoints. With the help of XML-based config information we can configure an end point, programmatically using methods/properties, or with both XML config files and some coding. WCF includes multiple usability avenues. For example, we can use WCF out of the box with little or no coding or elect to build custom implementations for all aspects of your service. In making communication channels plays an important role, the WCF runtime detects the binding for creating the channels. The main task of channel are receiving and transforming data. Data goes in one end of the channel, the channel operates on the data, and new data is dumped out the other end of the channel.

You might also like