http://blogs.msdn.com/jameswu/archive/2008/07/15/anonymous-access-in-sql-rs-2008.aspx

http://blogs.msdn.com/jameswu/archive/2008/10/24/anonymous-access-in-sql-rs-2008-part-2.aspx


匿名訪問報表方法

為例


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>

 

</Authentication>


 




相关文章:

  • 2021-10-09
  • 2022-02-08
  • 2022-12-23
  • 2021-08-24
  • 2022-02-25
  • 2021-12-17
  • 2021-10-06
猜你喜欢
  • 2022-02-19
  • 2022-01-10
  • 2022-12-23
  • 2022-03-03
  • 2021-11-11
  • 2021-12-03
  • 2021-11-02
相关资源
相似解决方案