Reporting Service for SQL 2008匿名访问报表方法

下載文檔  下載工具


1.AnonymousSecurity.cs编译成Microsoft.Samples.ReportingServices.AnonymousSecurity.dll,拷贝这个DLL到
C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\bin

 

2.修改两个web.config配置文件
(位于
C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer和
C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportManager)

    <authentication mode="Windows" />
    <identity impersonate="true"/>
替换为:
    <authentication mode="None" />
    <identity impersonate="false"/>

3.修改配置文件rereportserver.config
(位于C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer)

<Authentication>
   <AuthenticationTypes>
    <RSWindowsNegotiate/>
    <RSWindowsNTLM/>
   </AuthenticationTypes>
   <EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>
替换为:
<Authentication>
   <AuthenticationTypes>
    <Custom/>
   </AuthenticationTypes>
   <EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>

 


   <Security>
    <Extension/>
   </Security>
   <Authentication>
    <Extension/>
   </Authentication>
下面添加
<Security>
       <Extension />
</Security>
<Authentication>
       <Extension />
</Authentication>

 

相关文章:

  • 2022-12-23
  • 2021-07-10
  • 2021-12-04
  • 2022-01-02
猜你喜欢
  • 2021-08-01
  • 2022-01-10
  • 2021-07-22
  • 2022-02-08
  • 2022-12-23
  • 2022-02-16
相关资源
相似解决方案