我已经使用WIF创建了一个STS,但是我怎样才能让双工回调起作用呢?
我当前使用的绑定是WS2007FederationHttp。我认为它不支持双工。
WIF能支持双工吗?
发布于 2011-08-20 04:04:13
WIF可以,但联合绑定不能开箱即用。您将希望执行以下操作:
// Setting RequireClientCertificate = true enables mutual authentication (2 way SSL), originally disabled for WS2007FederationHttpBinding
HttpsTransportBindingElement httpsBinding = outputBinding.Elements.Find<HttpsTransportBindingElement>();
httpsBinding.RequireClientCertificate = true;https://stackoverflow.com/questions/5501625
复制相似问题