SQL Server 2008 Reporting Services身份验证

时间:2022-10-15 08:22:52
<Authentication>
    <AuthenticationTypes>
        <RSWindowsNTLM/>
    </AuthenticationTypes>
<EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>

Whenever I have the above settings in my rsreportserver.config file I can view reports in my web application but I can't access the Report Manager.

每当我在rsreportserver.config文件中进行上述设置时,我都可以在我的Web应用程序中查看报告,但无法访问报告管理器。

But whenever I have the settings below I can't view the reports in my web application but I can access the Report Manager. What settings should I use to be able to access both?

但是,只要我有下面的设置,我就无法在我的Web应用程序中查看报告,但我可以访问报告管理器。我应该使用哪些设置才能访问这两个设置?

<Authentication>
    <AuthenticationTypes>
        <RSWindowsBasic/>
    </AuthenticationTypes>
<EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>

1 个解决方案

#1