SecureConversation and establishSecurityContext
What is default value of establishSecurityContext attribute in binding element?
If it is set to true and write following code (BTW: server side code is per-call) :
using (ChannelFactory<IService> factory = new ChannelFactory<IService>())
{
....
}
My understanding is that secure conversation (i.e. WS-SecureConversation) ends once the "using" block exists? Any subsequent executions of the above code will re-establish the secure conversation with the server again. Is this correct?
Thanks.

