SSRS Report Render report in PDF Via URL

reporting-services

I have an SSRS2016 Report that I'm able to connect to in the browser:
http://vmbksa69901mcz/reports_ssrs1d/report/DAS/CDO_Suite/AccruedInterestRpt

But I want to be able to export to pdf by the url. This article states that this is possible:
https://docs.microsoft.com/en-us/sql/reporting-services/export-a-report-using-url-access

So, when I try to put in this url:
http://vmbksa69901mcz/reports_ssrs1d?/DAS/CDO_Suite/AccruedInterestRpt&rs:Format=PDF

It does not work.. It just brings me to the home page of the SSRS Site, and changes the url to:
http://vmbksa69901mcz/reports_ssrs1d/browse/

I don't see what I'm doing wrong here.

Best Answer

When you use a URL to pass commands you need to use the Web Service URL reportserver path in the URL not the web portals URL.

If you run the Reporting Services Configuration Manager and look under "Web Service URL" you see a different address.

By default the web portal (SSRS home page as you called it) will be at http://myServer/Reports

But the Web Service URL by default is http://myServer/Reportserver

Related Topic