如何在 WPF 中呈现来自 SSRS 2010 Web 服务的报告?

发布于 2024-12-02 01:05:38 字数 505 浏览 2 评论 0 原文

我的应用程序中有一个到 SSRS 2010 Web 服务的连接,我可以毫无问题地加载服务器中包含的报表文件夹和报表项目的整个层次结构。我借助 WSDL 工具生成了 SSRS 2010 服务代理,遵循 指南

我研究了在 WPF 中呈现报表项的不同方法,常见的方法是提供 RDLC 文件的路径作为报表查看器控件的数据源。问题是,当我在内存中加载此层次结构时,我所拥有的只是 CatalogItems,这些项目没有为我提供通向此类对象的路径。

我有点迷失在这里。我怎样才能继续检索可用且可显示的对象?

I have a connection to SSRS 2010 web service in my application and I can load the whole hierarchy of report folders and report items contained in my server without a problem. I generated the SSRS 2010 service proxy thanks to the WSDL tool, following the guideline on MSDN.

I have looked to the different ways of rendering the report items in WPF and the common way of doing so is to provide a path to a RDLC file as a datasource to the report viewer control. The problem is that when I load this hierarchy in memory, all I have is CatalogItems, and these items does not provide me a path leading to such an object.

I am kind of lost here. How can I proceed to retrieve a usable and displayble object?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨巷深深 2024-12-09 01:05:38

我终于想出了如何做到这一点。

我从 CatalogItem.Path 属性中获取报表路径,然后将 ReportServerUrl 属性添加到 ReportingService2010 实例中,以便稍后检索它。这都是在对象方面。

对于图形,我将 WPF 应用程序中的 Forms ReportViewer 与 WindowsFormsHost 集成在一起。要在控件中显示远程报表,我必须将 ReportViewer.ProcessingMode 更改为ProcessingMode.Remote,最后将 ReportViewer.ServerReport.ReportServerUrl 和 ReportViewer.ServerReport.ReportPath 设置为我的报表对象属性。然后调用ReportViewer.RefreshReport()方法加载报表。

I finally figured out how to do do that.

I take the report path from the CatalogItem.Path property and then I added a ReportServerUrl property to my ReportingService2010 instance so I can retrieve it later. This is all on the object side.

For the graphics I integrated the Forms ReportViewer in my WPF application with the WindowsFormsHost. To display the remote report in the control I had to change the ReportViewer.ProcessingMode to ProcessingMode.Remote and finally set the ReportViewer.ServerReport.ReportServerUrl and ReportViewer.ServerReport.ReportPath to my report object properties. Then call the ReportViewer.RefreshReport() method to load the report.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文