集成 ASP.Net 和 Reporting Services 之间的安全性
我有一个 ASP.Net 网站,其中包含标准表单身份验证成员资格数据库,然后是一个包含大量报告的 Reporting Services 实例。
如何整合两台服务器之间的安全性?最坏的情况是,我可以用一些代码构建报告并将一组通用凭据传递到报告服务器,但我失去了安全粒度...我可以以相同的方式传递当前的凭据集,但随后我必须保持两个数据库同步。必须有更好的方法。
TIA、
CBB
I have an ASP.Net website with the standard forms auth membership database, and then a Reporting Services instance with a bunch of reports on it.
How can I integrate the security between the two servers? Worst case, I could just frame in the reports with some code and pass a universal set of credentials to the Reporting server, but I lose security granularity...I could pass the current set of credentials the same way, but then I have to keep the two db's synched. There has to be a better way.
TIA,
CBB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将自定义身份验证提供程序写入 Sql Server Reporting Services,以根据表单身份验证成员身份数据库进行身份验证。
下面的链接甚至提供了针对表单身份验证数据库进行身份验证的示例:
报告中的身份验证服务
You could write a custom authentication provider to Sql Server Reporting Services to authenticate against your Forms Authentication Membership DB.
The link below even gives an example of authenticating against a Forms Authentication Database:
Authentication in Reporting Services