WCF Interview questions


Total available count: 25
Subject - Microsoft Technologies
Subsubject - WCF

What is an endpoint in WCF or What is three major points in WCF?

Every service must have Address that defines where the service resides, Contract that defines what the service does and a Binding that defines how to communicate with the service.
 
In WCF the relationship between Address, Contract and Binding is called Endpoint, The Endpoint is the fusion of Address, Contract and Binding.
 
AddressSpecifies the location of the service.
 
ContractSpecifies the interface between client and the server.
 
BindingSpecifies how the two parties will communicate in term of transport and encoding and protocols.



Next 5 interview question(s)

1
What is the purpose of base address in WCF service? How it is specified?
2
What is WCF (Windows Communication Foundation)?
3
What is the difference between REST and SOAP?
4
What is Throttling in WCF?
5
What is binding and how many types of bindings are there in WCF?