作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理处理 WCF REST 服务的安全网站。
一切正常,直到我开始保护我的网站。
我将身份验证模式从匿名更改为 Windows 身份验证,并在 global.asax 文件中实现了自动化。
对于通过 MVC 架构设计并使用内部服务的网站,一切都按预期工作,但 REST API 运行不佳。
我已将安全配置添加到 web.config 绑定(bind)部分,如下所示:
<binding name="webHttpBindingWindows">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Ntlm" proxyCredentialType="Ntlm"></transport>
</security>
</binding>
<binding name="webHttpBindingWindows">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" proxyCredentialType="Windows"></transport>
</security>
</binding>
<extendedProtectionPolicy policyEnforcement="WhenSupported"></extendedProtectionPolicy>
The extended protection settings configured on IIS do not match the settings configured on the transport. The ExtendedProtectionPolicy.PolicyEnforcement values do not match. IIS has a value of WhenSupported while the WCF Transport has a value of Never.
最佳答案
最终我得到了这个问题的解决方案:
变化发生在三个不同的地方:
off
. 内核模式认证应该是 enabled
. <transport clientCredentialType="Ntlm"></transport>
<endpoint address="mex" … />
位于 address="rest"
之前public void WindowsAuthentication_OnAuthenticate(object sender, WindowsAuthenticationEventArgs args)
关于wcf - ExtendedProtectionPolicy.PolicyEnforcement 值不匹配。 IIS 的值为 WhenSupported,而 WCF 传输的值为 Never,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21556183/
我正在处理处理 WCF REST 服务的安全网站。 一切正常,直到我开始保护我的网站。 我将身份验证模式从匿名更改为 Windows 身份验证,并在 global.asax 文件中实现了自动化。 对于
我是一名优秀的程序员,十分优秀!