Click here to Skip to main content
15,866,422 members
Articles / Programming Languages / C#

Three ways to do WCF instance management

Rate me:
Please Sign up or sign in to vote.
4.92/5 (159 votes)
8 Jun 2010CPOL6 min read 611K   8.3K   289   102
Three ways to do WCF instance management (Per call, Per session, and Single).

Table of contents

Introduction

Very often we would like to control the way WCF service objects are instantiated on a WCF server. You would want to control how long the WCF instances should be residing on the server.

The WCF framework has provided three ways by which we can control WCF instance creation. In this article, we will first try to understand those three ways of WCF service instance control with simple code samples of how to achieve them. Finally, we will compare when to use them and under what situations.

There is a small ebook for all my .NET friends which covers topics like WCF, WPF, WWF, AJAX, Core .NET, SQL, etc., which you can download from here.

WCF service object instancing basics

In normal WCF request and response communication, the following sequence of actions takes place:

  • WCF client makes a request to a WCF service object.
  • WCF service object is instantiated.
  • WCF service instance serves the request and sends the response to the WCF client.

Following is a pictorial representation of how WCF requests and responses work.

Image 1

Following are different ways by which you can create WCF instances:

  • Create a new WCF service instance on every WCF client method call.
  • Only one WCF service instance should be created for every WCF client session.
  • Only one global WCF service instance should be created for all WCF clients.

To meet the above scenarios, WCF has provided three ways by which you can control WCF service instances:

  • Per call
  • Per session
  • Single instance

Per call instance mode

When we configure a WCF service as per call, new service instances are created for every method call you make via a WCF proxy client. The image below shows this in a pictorial format:

  • The WCF client makes the first method call (method call 1).
  • A new WCF service instance is created on the server for this method call.
  • The WCF service serves the request and sends the response and the WCF instance is destroyed and given to the garbage collector for clean up.
  • Now let’s say the WCF client makes a second method call, a new instance is created, the request is served, and the WCF instance is destroyed.

In other words, for every WCF client method call, a WCF service instance is created, and destroyed once the request is served.

Image 2

How to implement WCF per call instancing

In order to specify the instancing mode, we need to provide the InstanceContextMode value in the ServiceBehavior attribute as shown below. This attribute needs to specified on the Service class. In the below code snippet, we have specified intCounter as a class level variable and the class counter is incremented by one when the Increment method is called.

C#
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Percall)] 
public class Service : IService
{
    private int intCounter;

    public int Increment()
    {
        intCounter++
        return intCounter;
    }
}

At the client, we consume the WCF client and we call the Increment method twice.

C#
ServiceReference1.ServiceClient obj = new ServiceReference1.ServiceClient(); 
MessageBox.Show(obj.Increment().ToString());
MessageBox.Show(obj.Increment().ToString());

Even though we have called the Increment method twice, we get the value ‘1’. In other words, the WCF service instance is created for every method call made to the WCF service instance so the value will always be one.

Image 3

Per session instance mode

Very often we need to maintain state between method calls or for a particular session. For those kinds of scenarios, we will need to configure the service per session. In per session, only one instance of a WCF service object is created for a session interaction. The figure below explains this in pictorial format.

  • The client creates the proxy of the WCF service and makes method calls.
  • A WCF service instance is created which serves the method response.
  • The client makes one more method call in the same session.
  • The same WCF service instance serves the method call.
  • When the client finishes its activity, the WCF instance is destroyed and served to the garbage collector for clean up.

Image 4

How to implement per session instancing

To configure service as per session, we need to configure the ServiceBehavior attribute with a PerSession value in the InstanceContextMode object.

C#
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession)] 
public class Service : IService
{
    private int intCounter;
    public int Increment()
    {
        intCounter++
        return intCounter;
    }
}

At the client side, when we run the below client code, you should see the value ‘2’ after the final client code is executed. We have called the method twice so the value will be seen as two.

C#
ServiceReference1.ServiceClient obj = new ServiceReference1.ServiceClient(); 
MessageBox.Show(obj.Increment().ToString());
MessageBox.Show(obj.Increment().ToString());

Image 5

Single instance mode

Often we would like to create one global WCF instance for all WCF clients. To create a single instance of a WCF service, we need to configure the WCF service as Single instance mode. Below is a simple pictorial notation of how the single instance mode will operate:

  • WCF client 1 requests a method call on the WCF service.
  • A WCF service instance is created and the request is served. The WCF service instance is not destroyed, the service instance is persisted to server other requests.
  • Now let’s say some other WCF client, e.g., client 2, requests a method call.
  • The same WCF instance which was created by WCF client 1 is used to serve the request for WCF client 2. In other words, only one global WCF server service instance is created to serve all client requests.

Image 6

How to implement single instance mode

In order to create a single instance of a WCF service, we need to specify InstanceContextMode as Single.

C#
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] 
public class Service : IService
{
}

If you call the WCF service from a different client, you will see the counter incrementing. The counter becomes a global variable.

Image 7

When should you use per call, per session, and single mode?

Per call

  • You want a stateless services.
  • Your service holds intensive resources like connection objects and huge memory objects.
  • Scalability is a prime requirement. You would like to have a scaled out architecture.
  • Your WCF functions are called in a single threaded model.

Per session

  • You want to maintain states between WCF calls.
  • You a scaled up architecture.
  • Light resource references.

Single

  • You want share global data through your WCF service.
  • Scalability is not a concern.

References

Source code

You can download the source code for this tutorial from here.

For Further reading do watch  the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionHow I save public data and using in evey call functions - per call mode Pin
Hossein Ganjyar23-Apr-18 22:03
Hossein Ganjyar23-Apr-18 22:03 
QuestionNice diagrams! Pin
zipperle6-Mar-18 22:02
zipperle6-Mar-18 22:02 
BugISSUE with the Persession context mode Pin
Member 1158760912-Feb-16 1:15
Member 1158760912-Feb-16 1:15 
Questionwhen will PerSession mode expire? Pin
Adil S26-Aug-15 6:34
Adil S26-Aug-15 6:34 
SuggestionIt would be better if explain ConcurrencyMode together Pin
qakmak23-Aug-15 6:06
qakmak23-Aug-15 6:06 
GeneralQuery regarding InstanceContextMode Pin
Chayan Floyd Kar9-Jun-15 4:59
Chayan Floyd Kar9-Jun-15 4:59 
GeneralStructured, Well explained, and I am not left hanging. Pin
stixoffire27-May-15 3:58
stixoffire27-May-15 3:58 
GeneralMy vote of 5 Pin
Seyyed Hossein Hasan Pour7-Feb-15 22:55
Seyyed Hossein Hasan Pour7-Feb-15 22:55 
Questionwow 5 from me Pin
saxenaabhi619-Jan-15 12:54
saxenaabhi619-Jan-15 12:54 
QuestionSuper Pin
fmanrique1911-Dec-14 8:57
fmanrique1911-Dec-14 8:57 
GeneralMy vote of 3 Pin
luis r carrizo8-Aug-14 12:47
luis r carrizo8-Aug-14 12:47 
GeneralCode throwing error Pin
Member 1062927427-Jul-14 21:34
Member 1062927427-Jul-14 21:34 
QuestionWhat instance Management technique should I use for Implementing Queue. Pin
pravin.ovhal1-Jul-14 21:10
pravin.ovhal1-Jul-14 21:10 
QuestionHow many instances are created in the per call mechanism Pin
pravin.ovhal13-Jun-14 0:59
pravin.ovhal13-Jun-14 0:59 
QuestionGood gob Pin
didiman29-May-14 16:05
didiman29-May-14 16:05 
GeneralMy vote of 5 Pin
yytg25-May-14 23:15
yytg25-May-14 23:15 
Questioninstance management Pin
Member 1028374125-Feb-14 4:50
Member 1028374125-Feb-14 4:50 
Questionper session and single modes are not working.. but you have give good explanation. Pin
Member 1006189521-Jan-14 2:07
Member 1006189521-Jan-14 2:07 
AnswerRe: per session and single modes are not working.. but you have give good explanation. Pin
Member 1158760912-Feb-16 1:16
Member 1158760912-Feb-16 1:16 
QuestionVery Good Article Pin
puja111913-Nov-13 15:55
puja111913-Nov-13 15:55 
QuestionFor PerSession to increment properly.... Pin
Member 966905918-Oct-13 10:25
Member 966905918-Oct-13 10:25 
AnswerRe: For PerSession to increment properly.... Pin
Ajith Alex M23-Sep-14 21:01
professionalAjith Alex M23-Sep-14 21:01 
GeneralMy vote of 5 Pin
Hasan Habib Surzo11-Sep-13 6:50
Hasan Habib Surzo11-Sep-13 6:50 
QuestionMy Vote is 5 Pin
ais073-Sep-13 1:57
ais073-Sep-13 1:57 
GeneralMy vote of 5 Pin
rwg21-Aug-13 4:39
professionalrwg21-Aug-13 4:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.