Introduction
From past few days I was doing some findings about the best ways of creating the service proxy's in WCF.
Here goes the collection of results of that exercise..
1)
In this first case, We are creating the service proxy with the help of the ChannelFactory and we are closing that factory once we are done with the exercise,but it might so happen that during close call it might throw an exception,Afterwards that proxy state becomes faulted and it may be of no use(you cant make any call on that), hence to be on the safer side, by using a bool we are cleaning the instance if at all any exception happens. How cool right?
private void ProxyCreation()
{
ChannelFactory<OrderServiceReference.OrderService> factory = default(ChannelFactory<OrderServiceReference.OrderService>);
bool blnClosed = false;
try
{
factory = new ChannelFactory<OrderServiceReference.OrderService>("WSHttpBinding_OrderService");
OrderServiceReference.OrderService proxy = factory.CreateChannel();
int i = proxy.GetScore();
factory.Close();
blnClosed = true;
}
finally
{
if (!blnClosed)
factory.Abort();
}
}
2.
In this second case, we are using the proxy generated by the svcutil through VS IDE.
using block will ensure that the proxy is Disposed,and hence the resource is getting cleanedup (You can see why is it like that in the Equivalent code section)
using (OrderServiceReference.OrderServiceClient proxy = new WindowsFormsApplication1.OrderServiceReference.OrderServiceClient())
{
int i = proxy.GetScore();
}
Equivalent code after compilation -
OrderServiceReference.OrderServiceClient proxy = default(OrderServiceReference.OrderServiceClient);
try
{
proxy = new WindowsFormsApplication1.OrderServiceReference.OrderServiceClient();
int i = proxy.GetScore();
}
finally
{
proxy.Dispose();
}
I hope this helps!!
Regards,
-Vinayak