What could be causing a “Cannot access a disposed object” error in WCF?

Srv_LoginChannelFactory.Close() is where it’s being disposed. When you call close you are giving up whatever unmanaged resource you had. Attempting to do something other then inspecting its state or re-opening it results in the “Cannot access a disposed object” exception. This is true whenever you close a disposable object and try and do something with … Read more