我们在哪里设置用户进行Web服务身份验证?

时间:2018-06-01 15:12:02

标签: web-services visual-studio-2010 asp.net-mvc-3 authentication .net-4.0

我们目前正在将我们的Web服务从2003服务器迁移到2008服务器。我们在Web配置中启用了身份验证,启用后,我们会看到一个弹出窗口供我们登录。但我们无法弄清楚我们要登录的内容,或者授予访问权限的位置。

任何人都可以提示我们需要注意什么?

我们在网络配置中使用的代码是 -

<configSections>
<section name="customBasicAuthentication" type="Thinktecture.CustomBasicAuthentication.CustomBasicAuthenticationSection, Thinktecture.CustomBasicAuthenticationModule"/>
</configSections>

<customBasicAuthentication enabled="true" cachingEnabled="true" 
cachingDuration="15" requireSSL="false"/>

<authentication mode="None"/>
  <authorization>
  <deny users="?"/>
</authorization>

<httpModules>
  <add name="CustomBasicAuthentication" 
type="Thinktecture.CustomBasicAuthentication.CustomBasicAuthenticationModule, 
  Thinktecture.CustomBasicAuthenticationModule"/>
</httpModules>

0 个答案:

没有答案