SQL Server Reporting Services:使用Windows身份验证

时间:2019-07-19 15:56:40

标签: sql authentication reporting-services

我正在ASP.NET Core中开发应用程序,并且使用SSRS生成.pdf文件供我的用户在我的Intranet上使用。问题是它要求进行Windows身份验证,而我希望它不要问用户是否已经登录计算机。

当前在Windows服务器上的reportserver.config文件中是

<Authentication>
        <AuthenticationTypes>
            <RSWindowsNTLM/>
        </AuthenticationTypes>
        <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
        <RSWindowsExtendedProtectionScenario>Proxy</RSWindowsExtendedProtectionScenario>
        <EnableAuthPersistence>true</EnableAuthPersistence>
    </Authentication>

我需要更改什么,以便我的用户只需下载.pdf文件,而不必一直提示输入用户名和密码?

0 个答案:

没有答案