WCF

What is WCF?

WCF (Windows Communication Framework) is Microsoft framework to make inter-process communication easier. Through various means, it lets you do the communication like MS messaging Queuing, Services, Remoting and so on. It also allows you talk with other.NET apps, or non-Microsoft technologies (like J2EE).

Mention what are the main components of WCF?

Main components of WCF are

  • Service:  The working logic
  • Host: The path where the data is saved. E.g., .exe, process, windows service
  • Endpoints: The way the service is exposed to the outside world

Explain how does WCF works?

WCF follows the “Software as a Service” model, where all units of functionality are defined as services.  For communication, each point is a portal or connection either with the client or other services. It is a program that exposes a collection of endpoints.

What is WCF?

WCF (Windows Communication Framework) is Microsoft framework to make inter-process communication easier. Through various means, it lets you do the communication like MS messaging Queuing, Services, Remoting and so on. It also allows you talk with other.NET apps, or non-Microsoft technologies (like J2EE).

Mention what are the main components of WCF?

Main components of WCF are

  • Service:  The working logic
  • Host: The path where the data is saved. E.g., .exe, process, windows service
  • Endpoints: The way the service is exposed to the outside world

Explain how does WCF works?

WCF follows the “Software as a Service” model, where all units of functionality are defined as services.  For communication, each point is a portal or connection either with the client or other services. It is a program that exposes a collection of endpoints.