希望有人可以提供帮助!
我正在使用JSON调用WCF服务,但我无法获取用户凭据 我们正在使用Kerberos,因此IIS的设置如下:
使用wsHTTPBinding时,一切都很好用。但是要使JSON正常工作,我必须使用WebHttpBinding。 然后我需要获取用户凭证,以便我可以使用模拟与后端服务进行通信。
我在WFC配置中的绑定如下: 我用http://underground.infovark.com/2008/03/21/wcf-webhttp-binding-and-authentication/ 帮助:
<webHttpBinding>
<binding name="AjaxBinding">
<security mode="None">
<transport clientCredentialType="Ntlm" />
</security>
</binding>
</webHttpBinding>
<endpoint name="DataJson" address="Datajson" binding="webHttpBinding"
bindingConfiguration="AjaxBinding"
behaviorConfiguration="jsonbehaviour" contract="MyContract"/>
<behavior name="jsonbehaviour">
<!--<webHttp/>-->
<enableWebScript/>
</behavior>
它正在成功调用WCF服务,但除了匿名之外我无法得到任何内容:HttpContext.Current.User.Identity
或ServiceSecurityContext.Current.WindowsIdentity
所以我无法做到:
WindowsIdentity identity = (WindowsIdentity)HttpContext.Current.User.Identity();
using (identity.Impersonate())
{
// ... code to call application B goes here ...
}
我尝试将此添加到web.config中,以防我读到多个身份:
<deny users="?"/>
任何想法?
答案 0 :(得分:1)
您的配置中是否包含此部分?
<system.web>
<identity impersonate="true"/>
这些是我在我的“列表”中唯一可以检查的事项,当你进行集成身份验证时,你没有在你的问题中明确提到。希望有帮助吗?