Anonymous access in SQL RS 2008 | Reporting Service for SQL 2008匿名訪問報表方法

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


Reporting Service for SQL 2008匿名訪問報表方法

-----------------SQL2008安裝到C為例


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 Name="Windows" Type="Microsoft.ReportingServices.Authorization.WindowsAuthorization, Microsoft.ReportingServices.Authorization"/>
   </Security>
   <Authentication>
    <Extension Name="Windows" Type="Microsoft.ReportingServices.Authentication.WindowsAuthentication, Microsoft.ReportingServices.Authorization"/>
   </Authentication>
下麵添加
<Security>
       <Extension Name="None" Type="Microsoft.Samples.ReportingServices.AnonymousSecurity.Authorization, Microsoft.Samples.ReportingServices.AnonymousSecurity" />
</Security>
<Authentication>
       <Extension Name="None" Type="Microsoft.Samples.ReportingServices.AnonymousSecurity.AuthenticationExtension, Microsoft.Samples.ReportingServices.AnonymousSecurity" />
</Authentication>


 




posted @ 2010-04-07 12:14  Benny Ng  阅读(416)  评论(0编辑  收藏  举报