Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Process rdl/rdlc report files without SSRS?

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

like image 411
NabilS Avatar asked Mar 16 '26 20:03

NabilS


1 Answers

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.

like image 86
cdonner Avatar answered Mar 20 '26 11:03

cdonner