This WCF Tutorial is a collection of most frequently asked interview questions about Windows Communication Foundation (WCF) covering the beginner to professional level.
Following are the links to other posts in this WCF Questions Series:
- WCF Service Interview Questions – Part 1
- WCF Service Interview Questions – Part 2
- WCF Service Interview Questions – Part 3
- WCF Service Interview Questions – Part 4
Note: Please look into the Top 10 WCF Interview Questions also.
WCF Interview Questions List – Part 1
- What is WCF?
- Why to use WCF? or What are the advantages of using WCF?
- What are the core components of WCF Service?
- What are the new features introduced in WCF 4.5?
- What is the difference between WCF and ASMX Web services?
- What are the Endpoints in WCF? or Explain ABCs of endpoint?
- What is the difference between Service EndPoint and Client Endpoint?
- What is a WCF Binding? How many different types of bindings available in WCF?
- What is WebHttpBinding in WCF?
- Can we have multiple endpoints for different binding types in order to serve different types of clients?
- What are the hosting options for WCF Services? Explain.
What is WCF?
Microsoft refers WCF as a programming platform that is used to build Service-Oriented applications. Windows Communication Foundation is basically a unified programming model for developing, configuring and deploying distributed services. Microsoft has unified all its existing distributed application technologies (e.g. MS Enterprise Services, ASMX web services, MSMQ, .NET Remoting etc) at one platform i.e. WCF. Code name for WCF was Indigo. Below diagram clearly explains it:Back to top
Why to use WCF? or What are the advantages of using WCF?
- Service Orientation is one of the key advantages of WCF. We can easily build service-oriented applications using WCF.
- If compared with ASMX web services, WCF service provides reliability and security with simplicity.
- As oppose to .NET Remoting, WCF services are interoperable.
- Different clients can interact with same service using different communication mechanism. This is achieved by using service endpoints. A single WCF service can have multiple endpoints. So, developer will write code for service once and just by changing configuration (defining another service endpoint), it will be available for other clients as well.
- Extensibility is another key advantage of WCF. We can easily customize a service behavior if required.
What are the core components of WCF Service?
- Service Class: A service class implementing in any CLR-based language and expose at least one method.
- Hosting Environment: a managed process for running service.
- Endpoint: a client uses it to communicate with service.
What are the new features introduced in WCF 4.5?
Windows Communication Foundation v4.5 was released with a number of cool features. Here we simply list down most important features but you can find thorough detail about each feature with helping code snippet in 7 parts series of new features in WCF 4.5. These important features are:
- Simplified Configuration files
- ToolTip and Intellisense support
- Task-based asynchronous Programming Model
- BasicHttpsBinding support
- Single WSDL Document
- WCF Configuration Validation
- ASP.NET Compatibility Mode changed
- Contract First Development
- Multiple Authentication Types
- XmlDictionaryReaderQuotas default value changed
- UDP Transport Support
- and many more…
For more on key WCF 4.5 features, please follow here.
What is the difference between WCF and ASMX Web services?
The basic difference is that ASMX web service is designed to send and receive messages using SOAP over HTTP only. While WCF service can exchange messages using any format (SOAP is default) over any transport protocol (HTTP, TCP/IP, MSMQ, Named Pipes etc).You can find detailed discussion on WCF Vs ASMX Web services here.
Back to Top
What are the Endpoints in WCF? or Explain ABCs of endpoint?
For WCF services to be consumed, it’s necessary that it must be exposed; Clients need information about service to communicate with it. This is where service endpoints play their role.
A service endpoint has three basic elements or also called ABCs of an endpoint i.e. Address, Binding and Contract.
- Address: It defines “WHERE”. Address is the URL that identifies the location of the service.
- Binding: It defines “HOW”. Binding defines how the service can be accessed.
- Contract: It defines “WHAT”. Contract identifies what is exposed by the service.
What is the difference between Service EndPoint and Client Endpoint?
As we already understood the concept of an Endpoint and it’s ABC (Address, Binding, Contract). Both Service and Client Endpoint has same ABC but we think in different perspective while working with them. We can differentiate between Service and Client Endpoint with respect to Address, Binding and Contract as:
Service Endpoint |
Client Endpoint |
WHERE: URL of hosted service. | WHERE: where to connect with hosted service. |
WHAT: bindings being used. | WHAT: binding supported by service. |
CONTRACT: Service Contract i.e. interfaces | CONTRACT: what to pass and expect while communicating with service. |
What is a WCF Binding? How many different types of bindings available in WCF?
Bindings in WCF actually defines that how to communicate with the service. Binding specifies that what communication protocol as well as encoding method will be used. Optionally, binding can specify other important factors like transactions, reliable sessions and security.
Another WCF Tutorial gives more detailed understanding of Binding concept in WCF.
There are different built-in bindings available in WCF, each designed to fulfill some specific need.
- basicHttpBinding
- wsHttpBinding
- netNamedPipeBinding
- netTcpBinding
- netPeerTcpBinding
- netmsmqBinding
For details on different binding types, please follow the link to WCF bindings.
Back to Top
What is a WebHttpBinding in WCF?
WebHttpBinding is the one that is used for creating WCF RESTful services. In Windows Communication Foundation v3.5, Microsoft introduces support for building RESTful services. REST (Representational State Transfer) is an architectural design that uses HTTP the way it should be used.
Instead of using HTTP just as a transport (in case of SOAP-based WCF Services), RESTful WCF services uses full features of HTTP (for all CRUD Operations including Create, Retrieve, Update and Delete).
You can find WebHttpBinding in action as in below configuration screenshot.
Can we have multiple endpoints for different binding types in order to serve different types of clients?
Yes, we can have multiple endpoints for different binding types. For example, an endpoint with wsHttpBinding and another one with netTcpBinging.
Back to Top
What are the hosting options for WCF Services? Explain.
For a service to host, we need at least a managed process, a ServiceHost instance and an Endpoint configured. Possible approaches for hosting a service are:
- Hosting in a Managed Application/ Self Hosting
- Console Application
- Windows Application
- Windows Service
- Hosting on Web Server
- IIS 6.0 (ASP.NET Application supports only HTTP)
- Windows Process Activation Service (WAS) i.e. IIS 7.0 supports HTTP, TCP,
NamedPipes, MSMQ.
Next WCF Tutorial on Interview Questions and Answers in this series is about Proxy and Channel Factory, Concurrency and Throttling in WCF.
Top 10 Interview Questions and Answers Series:
- Top 10 WCF Interview Questions
- Comprehensive Series of WCF Interview Questions
- Top 10 HTML5 Interview Questions
- Top 10 ASP.NET Interview Questions
- Comprehensive Series of ASP.NET Interview Questions
- Top 10 ASP.NET MVC Interview Questions
- Top 10 ASP.NET Web API Interview Questions
- Top 10 ASP.NET AJAX Interview Questions
Pingback: Top 10 WCF Interview Questions | WCF Tutorial
Pingback: Top New Features in ASP.NET Web API 2.1 | Web Development Tutorial