惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
Scott Helme
Scott Helme
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
V
V2EX
腾讯CDC
博客园_首页
博客园 - 司徒正美
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
罗磊的独立博客
Recorded Future
Recorded Future
博客园 - 聂微东
O
OpenAI News
S
Secure Thoughts
Hacker News: Ask HN
Hacker News: Ask HN
S
Schneier on Security
Hacker News - Newest:
Hacker News - Newest: "LLM"
Y
Y Combinator Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Project Zero
Project Zero
宝玉的分享
宝玉的分享
K
Kaspersky official blog
N
Netflix TechBlog - Medium
T
The Exploit Database - CXSecurity.com
Google Online Security Blog
Google Online Security Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Webroot Blog
Webroot Blog
云风的 BLOG
云风的 BLOG
Simon Willison's Weblog
Simon Willison's Weblog
C
Check Point Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
L
LINUX DO - 热门话题
美团技术团队
L
Lohrmann on Cybersecurity

博客园 - Rainbow.ding

SSRS 表达式 用户中心 - 博客园 DataTable的Distinct SQL Server 2005 - Default Trace (默认跟踪) 数据库设计范式的理解(转) SQL SERVER 中的smalldatetime和datetime区别 sqlserver 日期字段转换格式 数据库镜像 Sql Server格式化日期(转) 彼尔盖茨的十句话,绝对让你改变一生! 必须掌握的8个cmd 命令(转) 海量数据处理 (转) 软件开发者面试百问(转) 薪资谈判技巧 综述ASP.NET下的AJAX模式 水晶报表注册码 ASP.NET中传参一种简单加密与解密QueryString的方法 BI的相关名词 在外企必会的10个英文单词:
设置SQL2008报表匿名访问的方法
Rainbow.ding · 2011-01-21 · via 博客园 - Rainbow.ding

设置SQL2008报表匿名访问的方法

安照下面的步骤操作可以将SQL2008报表配置成匿名访问,其中的Microsoft.Samples.ReportingServices.AnonymousSecurity.dll大家可以把邮箱留下,我会在看到之后给你发过去。

1. 拷贝Microsoft.Samples.ReportingServices.AnonymousSecurity.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

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