Process rdl/rdlc report files without SSRS?

烈酒焚心 提交于 2019-12-07 13:46:51

问题


Is there any way to render and export an rdl file within a batch process without using SSRS?

I don't want the overhead of SSRS (IIS + database) and instead want to handle this within my own batch/scheduling service.

Thanks


回答1:


You can conceivably use the Report Viewer control in a server process written in managed code. You pass the control a data source (which can be a DataTable memory object), and it will return a byte stream that you can direct into a file.

The control has a UI, but that can be by-passed.



来源:https://stackoverflow.com/questions/645850/process-rdl-rdlc-report-files-without-ssrs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!