Tag Archives: WCF Instance Management

3 techniques for Instance management in WCF

Instance management basically defines the binding of service instance to a request received from a client. In case of WCF, following three techniques for service instantiation are available:  PerCall PerSession Single As we know that application requirements varies from one to another with respect to scalability, durability, performance, transactions etc, so in order to meet respective… Read More »

WCF Service – Instance Deactivation

What is Instance Deactivation in Windows Communication Foundation? How explicitly we can deactivate an instance? Instance Deactivation: When a service method being called from client, its forwarded to a service instance. So, Instance deactivation means that the moment this service instance is disposed off by WCF. In order to explicitly deactivate a service instance, we will… Read More »