窗口身份验证实现

窗口身份验证实现

本文介绍了窗口身份验证实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是wcf服务的新手.我只想对特定用户组实施窗口身份验证.请告诉我实现此目的的最佳方法.

i am new to wcf service .i just want to implement window authentication for specific user group.Please tell me best way to achieve this.

当前实施:-

<安全模式=仅TransportCredentialOnly">
            < transport clientCredentialType ="Windows"; />
          </security>

<security mode="TransportCredentialOnly">
            <transport clientCredentialType="Windows" />
          </security>

< system.web>
    <验证模式="Windows"; />
    < identity impersonate ="false" />
  </system.web>

<system.web>
    <authentication mode="Windows" />
    <identity impersonate="false" />
  </system.web>

启用匿名身份验证

启用窗口身份验证

预先感谢

推荐答案


这篇关于窗口身份验证实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 08:39