日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

實(shí)現(xiàn)Reporting Service2008 的匿名訪問(親測可

系統(tǒng) 2027 0

  實(shí)現(xiàn)Reporting Service2008 的匿名訪問是件比較費(fèi)勁的事情,網(wǎng)上提供的方法挺多的,但總結(jié)起來起來能用的就三種:

  一種通過ReportViewer控件顯示報(bào)表,在系統(tǒng)中添加一個(gè)專用用戶,權(quán)限限制在瀏覽級別,然后在代碼中實(shí)現(xiàn)身份接口,指定控件以該用戶身份登錄,這是變相的匿名訪問;(詳細(xì)見 http://www.cnblogs.com/lonely7345/archive/2010/01/10/1643603.html

  第二種是通過WebService來訪問報(bào)表,是本人一篇博文( http://www.cnblogs.com/dege301/archive/2009/09/04/1560456.html )中介紹方法的衍生,細(xì)節(jié)不在說明,類似于第一種方法需要指定專門用戶,也不是真正意義上的匿名訪問;

  第三種就是MSDN上能找到的那種,更改4個(gè)配置文件并添加一個(gè).dll文件,經(jīng)本人測試,如果完全按照給的說明操作不可行,會出現(xiàn)“報(bào)表服務(wù)器配置錯(cuò)誤”,但經(jīng)過一些列改動之后該方法可行,并且是真正意義上的匿名訪問,將在下文中給出詳細(xì)步驟。

涉及到的配置文件如下(目錄視具體安裝情況):

1. ???????? C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer 下的 web.config rsreportserver.config 、 rssrvpolicy.config

2. ???????? C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportManager 下的 web.config

注意:在配置之前先備份以上文件,以防失?。。。?

?

配置過程:

1. ???????? 找到兩個(gè) Web.config 文件中的如下代碼:

< authentication mode = " Windows " />

< identity impersonate = " true " />

替換成:

< authentication mode = " None " />

?< identity impersonate = " false " />

2. ???????? 找到 rsreportserver.config 文件中的如下代碼:

??? < Authentication >

?????? < AuthenticationTypes >

?????????? < RSWindowsNegotiate />

?????????? < RSWindowsNTLM />

?????? </ AuthenticationTypes >

?????? < EnableAuthPersistence > true </ EnableAuthPersistence >

??? </ Authentication >

??? 替換成:

???????? ??? < Authentication >

??????? < AuthenticationTypes >

??????????? < Custom />

??????? </ AuthenticationTypes >

??????? < EnableAuthPersistence > true </ EnableAuthPersistence >

</ Authentication >

3. ?? 把文件 Microsoft.Samples.ReportingServices.AnonymousSecurity.dll 放到 C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\bin 目錄下(注意:目錄視具體安裝情況而定)

4. ???????? 找到 rsreportserver.config 文件中的如下代碼:

< 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 >

5. ???????? 找到文件 rssrvpolicy.config 中的如下代碼:

</ NamedPermissionSets >

??????????????????? < CodeGroup

??????????????????????????? class = " FirstMatchCodeGroup "

??????????????????????????? version = " 1 "

??????????????????????????? PermissionSetName = " Nothing " >

??????????????????????? < IMembershipCondition

??????????????????????????????? class = " AllMembershipCondition "

??????????????????????????????? version = " 1 "

??????????????????????? />

??? 在后面 添上 如下代碼(注意Url地址可能不同):

< CodeGroup ????????????? ??????????????????????????????????????????????? class = " UnionCodeGroup " ?????????????????????????????????????????????????????????????? version = " 1 " ?????????????????????????????????????????????????????????????? PermissionSetName = " FullTrust " ?????????????????????????????????????????????????????????????? Name = " Private_assembly " ??? ??????????????????????????????????????????????????????????? Description = " This code group grants custom code full trust. " >??????????????????????????? < IMembershipCondition ??????????????????????????? class = " UrlMembershipCondition " ?????? version = " 1 " ????????? ?????????????????? Url = " C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER2008\Reporting Services\ReportServer\bin\Microsoft.Samples.ReportingServices.AnonymousSecurity.dll " />

??????????????????????? </ CodeGroup >

6. ???????? 重啟 Reporting Service 服務(wù)。

?

實(shí)現(xiàn)Reporting Service2008 的匿名訪問(親測可行)


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦?。?!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 翁牛特旗| 浦县| 汾西县| 壶关县| 霸州市| 长宁区| 泸溪县| 左权县| 民勤县| 东乡县| 红桥区| 莱西市| 定兴县| 深圳市| 安康市| 鸡西市| 彝良县| 柏乡县| 万年县| 铜梁县| 若羌县| 明水县| 灌南县| 徐汇区| 松阳县| 开封县| 荆门市| 罗定市| 莱州市| 上杭县| 乌拉特中旗| 繁昌县| 浦城县| 壶关县| 松潘县| 阿城市| 昌平区| 镇远县| 启东市| 壶关县| 廉江市|