如何从VS2010访问报表服务器以及如何在多层架构中实现
我正在开发一个网站,用户登录并从报表服务器访问不同的报表
要开发WCF服务来访问ssrs报表并返回到UI(它应该返回到报表查看器控件的内容应该是数据集还是?)
那么我怎样才能用N层架构来实现这个呢? 我该如何设计报告。有人可以简单解释一下吗?请
我在谷歌中找到如何访问远程服务器中的报告,但如何在多层架构中实现
I am developing a website where user logs in and access different reports from report server
A WCF service to be developed to access the ssrs report and it returns to the UI ( what it should return to report viewer control it should be a dataset or ?)
So how can i implement this with N-tier architecture.
and how can i design the report.Can anyone explain in brief ? please
I found in google how to access a report in remote server but how implement in multi tier architecture
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您需要解释将报表服务器置于 WCF 服务后面的需求。 IMO,最简单的事情是让您的网站使用报表查看器控件来从报表服务器访问报表。在这种配置中,您的报表服务器不需要向用户公开,因此我不清楚在两者之间使用 WCF 服务的目的是什么。
但是,无论出于何种原因,您必须将 WCF 服务作为报表服务器上的外观,然后必须将报表服务器 Web 服务包装在 WCF 服务中,这里您有两个选择:
Perhaps you need to explain the needs for putting report server behind WCF services. IMO, the simplest thing is to make your web site use Report Viewer control to access reports from report server. In such configuration, your report server need not be exposed to users so I am unclear as to what can be purpose for using WCF services in between.
However, for whatever reasons, you must have WCF services as facade over report server then you have to wrap report server web services in your WCF services, you have two choices here: