I am developing a web application with multiple WCF service references. Currently, each time we need to make a call to a service we do the following(as an example):

Service.ServiceClient ServiceClient = new Service.ServiceClient();
ServiceClient.SomeMethod();

Would it be better to have a static class with static references to each Service and call that class instead, thereby avoiding creating a new instance of the ServiceClient object each time we want to call it?

For example:

public static class Services
{
    private static Service.ServiceClient _ServiceClient = new Service.ServiceClient();
    public Service.ServiceClient ServiceClient
    {
        get
        {
            return _ServiceClient;
        }
    }
}

And, if doing it this way, would the line

private static Service.ServiceClient _ServiceClient = new Service.ServiceClient();

cause a new object to be created each time we try to call that object, or will it be the same instance of that object every time we make a call to it?

link|improve this question

1  
It will create a new instance with each call, any how the channel factory underneath will share resources between different instances thats why you have to Close() each instance once you are done with it to free the shared resource between all instances. – HaLaBi Jan 20 at 9:58
1  
Plus, If you are using the same proxy object for all calls and it failed on a call for some reason, this object will not be usable unless you Abort() and long story. It was designed to be used that way, Create an instance of the proxy, Call your method and finally Close() the instance. – HaLaBi Jan 20 at 10:03
feedback

4 Answers

up vote 2 down vote accepted

You can have a class which will have all the functions exposed by your data contract. All these methods will be static. Now inside these function you can do as follows

public class ServiceManager{
    public static CalculatedData SomeMethod()
    {
         var client = GetClient();
         try
         {
             return client.SomeMethod();
         }
         catch(Exception ex)
         {
             //Handle Error
         }
         finally
         {
             if(client.State == System.ServiceModel.CommunicationState.Opened)
                client.Close();
         } 

    }
    private static SomeClient GetClient()
    {
         return new ServiceClient();
    }
} 

Consumer will consume it like

var calculatedData = ServiceManager.SomeMethod();
link|improve this answer
feedback

It will only be created once, you will have no control however over when it will be created. The usual way to handle this is either create a seperate static method (init for example) where you create the instance or create it when first called. You should check the singleton design pattern for this.

link|improve this answer
Mhmm I thought of this but it isn't such a nice solution. Also, I don't think using a static{} constructor will be of much use either :?. – Frank Allenby Jan 20 at 12:29
feedback

if you want to do so create

Singleton Service

The singleton service is the ultimate sharable service. When a service is configured as a singleton, all clients independently get connected to the same single well-known instance, regardless of which endpoint of the service they connect to. The singleton service lives forever and is only disposed of once the host shuts down. The singleton is created exactly once, when the host is created.

You configure a singleton service by setting the InstanceContextMode property to InstanceContextMode.Single:

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
class MySingleton : ...
{...}
link|improve this answer
I think this is not what the OP is trying to achieve – HaLaBi Jan 20 at 10:07
feedback

You could use a helper like the following:

private delegate void ServiceAction(Service.ServiceClient client);

private static void PerformServiceAction(ServiceAction serviceAction)
{
  using (var client = new Service.ServiceClient())
  {
    serviceAction(client);
  }
}

which can then be invoked the following way:

Helper.PerformServiceAction(client => client.SomeMethod());

It still creates a proxy for every call or sequence of calls but at least your calling code is lighter.

(Keep in mind that using 'using' with a wcf client proxy is not a good idea because dispose might throw an exception so it's better to catch exceptions and to close the proxy gracefully manually).

link|improve this answer
yea, but client should be aborted expect of disposing if any exception happen, shouldn't it? – ArsenMkrt Jan 20 at 10:31
@ArsenMkrt Yes but using using might trigger an exception that hides to original exception. – vc 74 Jan 20 at 10:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.