I have a relatively straightforward report in SSRS 2012 (Native), with 2 report parameters. Both of these are Text type parameters and have a list of available values provided by DataSets.
I am trying to access this report via a URL, and specify values for the two parameters.
The URL I am using is of the form
http://<hostname>/ReportServer/Pages/ReportViewer.aspx?/<path_to_report>/<report_name>&<param1>=<value1>&<param2>=<value2>&rc:Parameters=false&rs:ClearSession=true
This results in the error message
The 'param1' parameter is missing a value
I have verified that I am definitely using the correct parameter names (not the prompt names), and values (not the display values).
If I remove the available values from the parameters in the report definition then it works as I want with no changes to the URL. This is undesirable however as ideally the report will be accessible through Report Manager where users will be shown the available values, and directly via the URL from a separate web application.
Is what I'm trying to achieve here actually possible or is this a limitation of URL parameters?