關於SQL2008報表服務遠程訪問彈出驗證的解決方法

關於SQL2008報表服務遠程訪問彈出驗證的解決方法

 

 

 

-------------------------------------------以SQL2008安裝到D盤爲例----------------------------------
1.將代碼(代碼太長,用另一篇文章發佈(結果還是提示文章太長,百度太小氣了,沒辦法,需要的留個Email吧))編譯爲Microsoft.Samples.ReportingServices.AnonymousSecurity.dll,
拷貝這個DLL到
D:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\bin

2.修改兩個web.config配置文件
(位於
D:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer和
D:\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
(位於D:\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>


搞定,收工.
 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章