SQL Server 2008 Reporting Services Authentication

<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 not access the report manager.

But whenever I have the settings below, I cannot view reports in my web application, but I can access the report manager. What options should be used to access both?

<Authentication>
    <AuthenticationTypes>
        <RSWindowsBasic/>
    </AuthenticationTypes>
<EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>
+2
source share

Source: https://habr.com/ru/post/1702699/


All Articles