5

我开发了一个自定义安全扩展,以实现从我们的 Intranet 产品到报告服务的单点登录。在我订阅之前,它就像一个魅力。

开发确实喜欢这里的建议:http: //msdn.microsoft.com/en-us/library/ms155029.aspx

登录、上传和管理报告工作。每个用户都可以阅读和打开报告。我们还实现了授权并覆盖了此处描述的功能:http: //msdn.microsoft.com/en-us/library/ms152800.aspx

管理文件夹,报告也可以。

当我发布订阅以呈现报告以通过电子邮件发送报告时,系统会说用户没有足够的权限通过电子邮件发送报告。

notification!WindowsService_0!1674!10/09/2013-14:02:04:: i INFO: Handling subscription f70f374e-28fa-4ba2-8b0e-6633f1299ee9 to report Projekt Aufwand, owner: rausch, delivery extension: Report Server Email.
library!WindowsService_0!1674!10/09/2013-14:02:04:: i INFO: RenderForNewSession('/Projektverwaltung/Projekt Aufwand')
library!WindowsService_0!1674!10/09/2013-14:02:04:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: , Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: Die dem Benutzer 'rausch' erteilten Berechtigungen reichen zum Ausführen des Vorgangs nicht aus.;
library!WindowsService_0!1674!10/09/2013-14:02:04:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
emailextension!WindowsService_0!1674!10/09/2013-14:02:04:: e ERROR: Error sending email. Exception: Microsoft.ReportingServices.Diagnostics.Utilities.RSException: Die dem Benutzer 'rausch' erteilten Berechtigungen reichen zum Ausführen des Vorgangs nicht aus. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: Die dem Benutzer 'rausch' erteilten Berechtigungen reichen zum Ausführen des Vorgangs nicht aus.
notification!WindowsService_0!1674!10/09/2013-14:02:04:: i INFO: Notification 6241f7f4-6225-44ea-b8ff-3654960ae218 completed.  Success: True, Status: Fehler beim Senden von E-Mail: Die dem Benutzer 'rausch' erteilten Berechtigungen reichen zum Ausführen des Vorgangs nicht aus.E-Mails werden nicht erneut gesendet., DeliveryExtension: Report Server Email, Report: Projekt Aufwand, Attempt 0

解决方法:我在 ReportServer 数据库中打开subscriptions表并替换OwnerId UserId表并将 替换为报表服务器管理员的 userId。然后订阅在管理员权限下运行并且可以正常工作。

任何人都知道我可以在哪里查看/检查以设置正确的权限?还是我必须在 CheckAccess 覆盖方法中添加一些代码?

部分代码:

  m_RptOperNames.Add(ReportOperation.CreateSubscription,
      OperationNames.OperCreateSubscription);
  m_RptOperNames.Add(ReportOperation.DeleteSubscription,
      OperationNames.OperDeleteSubscription);
  m_RptOperNames.Add(ReportOperation.ReadSubscription,
      OperationNames.OperReadSubscription);
  m_RptOperNames.Add(ReportOperation.UpdateSubscription,
      OperationNames.OperUpdateSubscription);
  m_RptOperNames.Add(ReportOperation.CreateAnySubscription,
      OperationNames.OperCreateAnySubscription);
  m_RptOperNames.Add(ReportOperation.DeleteAnySubscription,
      OperationNames.OperDeleteAnySubscription);
  m_RptOperNames.Add(ReportOperation.ReadAnySubscription,
      OperationNames.OperReadAnySubscription);
  m_RptOperNames.Add(ReportOperation.UpdateAnySubscription,
      OperationNames.OperUpdateAnySubscription);

在这里,我移动了整个 c# 类代码进行调查:https ://docs.google.com/file/d/0B02JCr49NYlUeDFVbWt2NVdpUmc/edit?usp=sharing

我没有看到任何执行或电子邮件订阅,但它不是参考代码的一部分。会是这样吗?

编辑

看到这个: http: //msdn.microsoft.com/en-us/library/bb283182.aspx 谁能告诉我通过电子邮件订阅订阅需要什么项目权?然后我可以更深入地了解需要授予哪些项目。

更新

我仍然有这个问题,但我现在更聪明了:)。事实上,电子邮件传递是Microsoft.ReportingServices.Library.TimedSubscriptionHandler由 WindowsService Reportserver 使用的。

如果您使用报告链接设置订阅,即使使用 CustomSecurity 扩展,订阅也只能工作!添加报表使系统呈现报表。报表服务器在那里创建一个新会话,并且没有授予权限。我还不知道自定义安全扩展的继承是否在这里有效。

也许一些 SSRS / .NET 大师有一些提示,在网上寻找了几个小时并没有给我任何解决方案。

解决方法:目前我在订阅上设置了一个触发器,并将 OwnerId 替换为 Admin id。

CREATE TRIGGER Subscription_overwrite_owner
   ON  dbo.Subscriptions
   AFTER INSERT, UPDATE
AS 
BEGIN
    -- replace the OwnerId with the uid from the admin account
    -- so the TimedSubscription runs with correct credentials
    UPDATE dbo.Subscriptions SET OwnerID = 'uuid admin from Users table'
END
GO
4

1 回答 1

3

我更喜欢其他人找到答案,但几个月以来没有人继续调查问题所在。最后,赢家是……

不备注我使用示例项目来实现自定义安全扩展。

我让它在我的环境中工作!

  1. 我确实使用示例 CustomSecurity 项目设置了安全扩展
  2. 如果订阅包含附件(如呈现的报告),则一切正常,但订阅除外。
  3. 后来我发现它可以与 rsreportserver.config 中的管理员用户设置一起使用(<Security><Configuration>这是从 SetConfiguration 设置加载的。
  4. 示例项目向我们展示了,我们将应用程序设置存储在web.config!

我确实在 web.config 中为我的自定义安全扩展存储了许多参数!

在前端和渲染报告中一切正常。但是当涉及到带有附件的订阅时,我们会遇到权限错误......

它适用于管理员,因为如果用户是管理员,CustomSecurity Sample 项目将授予访问权限!

但是 ReportServicesService.exe 没有从 web.config 中获取配置数据!

这就是为什么我的所有 CheckAccess() 方法都无法检查其他安全设置的原因,因为在 web.config 中,我们存储了例如连接字符串,如果我们用于获取自定义数据库。

因此,您现在可以重写代码并将所有配置数据从 web.config 移动到 rsreportserver.config 文件中。

或者,您也可以将 web.config 应用程序也添加到 /bin/ReportingServicesService.exe.config。

就我而言,例如:

<configuration>
  <configSections>
    <section name="RStrace" type="Microsoft.ReportingServices.Diagnostics.RSTraceSectionHandler,Microsoft.ReportingServices.Diagnostics" />
    <!-- custom authentication start -->
    <section name="CustomSecurity" requirePermission="false" />
    <!-- custom authentication end -->
  </configSections>
  <!-- custom authentication start -->
  <appSettings>
    <add key="log" value="d:\log"/>
    <add key="multi_company" value="true"/>
    <add key="default_domain" value="fqdn.domain.de"/>
    <add key="connection" value="database=ReportServer;server=(local);uid=sa;pwd=secret;" />
  </appSettings>
  <!-- custom authentication end -->

这是没有写在哪里的,我花了一段时间才弄清楚...

希望对使用自定义表单身份验证和 SSRS 的每个人有所帮助。

于 2015-08-28T16:00:06.787 回答