WIF、双工和绑定

发布于 2024-10-27 21:27:15 字数 115 浏览 0 评论 0原文

我已使用 WIF 创建 STS,但如何才能使 Duplex 回调正常工作。

我当前使用的绑定是 WS2007FederationHttp。我认为它不支持双工。

WIF可以支持双工吗?

I've used WIF to create a STS but how can I get Duplex callbacks working.

The current binding i'm using is WS2007FederationHttp. Which I'm lead to believe doesn't support Duplex.

Can WIF support duplex?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾挽 2024-11-03 21:27:15

WIF 可以,但联合绑定并不是开箱即用的。你会想做类似的事情:

        // Setting RequireClientCertificate = true enables mutual authentication (2 way SSL), originally disabled for WS2007FederationHttpBinding
        HttpsTransportBindingElement httpsBinding = outputBinding.Elements.Find<HttpsTransportBindingElement>();
        httpsBinding.RequireClientCertificate = true;

WIF can but that federation binding doesn't out of the box. You'll want to do something like:

        // Setting RequireClientCertificate = true enables mutual authentication (2 way SSL), originally disabled for WS2007FederationHttpBinding
        HttpsTransportBindingElement httpsBinding = outputBinding.Elements.Find<HttpsTransportBindingElement>();
        httpsBinding.RequireClientCertificate = true;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文