Kevin Noone


WCF Client and the “using” Statement

September 26, 2011

As I was researching patterns and practices for a WCF client implementation, I came across a bug in the .Net implementation of ClientBase (whether it’s actually a bug is arguable). It’s well documented on the web, but it could cause major headaches if you happened to miss it.

The core of the issue is that ClientBase implements IDisposable. With this knowledge, just about any programmer would naturally wrap its usage in a using{} block. Digging deeper, you’ll find that the ClientBase Dispose() method simply calls Close() on the underlying connection. This is problematic because in certain connection states (such as “Faulted”), the Close() will fail. As I said, this is well documented elsewhere, for example: on MSDN, Stack Overflow, and here.

There are a few different solutions to this issue. I went with a simple Disposable wrapper…


© 2021 Kevin Noone · Powered by Hugo and GitHub Pages