I have been looking at the thorny issue of WCF client disposal recently. One common solution I have seen is along the lines of:
try
{
client.Call();
client.Close();
success = true;
}
finally
{
if(!success) client.Abort();
}
This method however will abort where a soap:fault is returned by the service, even though the service has operated correctly.
If faults are returned routinely, will large numbers of aborts cause a problem to the running of my system?