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>