6

我有一个使用 Windows 身份验证的 MVC3 Intranet 应用程序。我现在正在使用第三方服务,它将向我的应用程序发出通知调用。我已经为这些 API 调用创建了一个侦听器,但不确定如何允许匿名访问我的应用程序中的单个视图。

我的 IIS7 设置如下:

Anonymous - Enabled <---------- Use Domain User
ASP.NET Impersonation - Disabled
Basic Authentication - Disabled
Digest Authentication - Disabled
Forms Authentication - Disabled
Windows Authentication - Enabled - HTTP 401 Challange

此外,在我的 web.config 文件中,身份验证模式设置为 Windows。

话虽如此,有没有办法允许匿名访问我的 MVC 应用程序中的单个视图?

4

1 回答 1

3

path 是您的最终 url,将其添加到您的 web.config。

<location path="MyController/MyAction">
    <system.web>
        <authorization>
            <allow users="?" />
        </authorization>
    </system.web>
</location>

或者使用 AllowAnonymousAttibute http://msdn.microsoft.com/en-us/library/system.web.http.allowanonymousattribute(v=vs.108).aspx来装饰动作。

于 2012-07-15T11:46:50.657 回答