I am using the ChannelFactory<T>
type to create channels into a WsHttpBinding
WCF web service, and the service uses a username/password combination to authenticate. While I have the authentication working using my custom validator, I am having difficulty creating channels with differing credentials.
Given the overhead of creating ChannelFactory<T>
, I'm trying to cache a single instance of it and share it for the creation of multiple channels over the lifetime of my application. Unfortunately, it seems like the credentials are directly tied to the factory and cannot be changed after a channel has been created.
In other words, if I try this:
factory.Credentials.UserName.UserName = "Bob";
factory.Credentials.UserName.Password = "password";
var channel1 = factory.CreateChannel();
factory.Credentials.UserName.UserName = "Alice"; // exception here
factory.Credentials.UserName.Password = "password";
var channel1 = factory.CreateChannel();
I get an exception telling me that the UserName
property is now read-only.
Is it possible to implement any sort of caching here, or am I essentially going to have to cache an instance of ChannelFactory
for every username?
As documented on MSDN this is not directly possible (
Credentials
become readonly uponOpen
of theChannelFactory
)... if you really want to do this you will need to trick theChannelFactory
like this:Another option seems to be to
Close()
theChannelFactory
before trying to change theCredentials
.Otherwise just stick with caching different ChannelFactories for different Credentials...