首页 > 解决方案 > SQL Server Reporting Services:使用 Windows 身份验证

问题描述

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

目前在reportserver.config我的 Windows 服务器上的文件中是这个

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

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

标签: sqlauthenticationreporting-services

解决方案


推荐阅读