How to solve this error: The permissions granted to user 'COMPUTERNAME\\ASPNET' are insufficient for performing this operation. (rsAccessDenied)
reporting
Solution
To clarify Erikk's answer a little bit.
The particular set of security permissions you want to set to fix this error (there are at least another two types of security settings in Reports Manager) are available in the "security" menu option of the "Properties" tab of the reports folder you are looking at.
Obiously it goes without saying you should not give full permission to the "Everyone" group for the Home folder as this is inherited to all other items and subfolders and open a huge security hole.
Problem
I am trying to integrate the SSRS report to my web page. The code is as follows: ``` ReportViewer1.ProcessingMode = rocessingMode.Remote; ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://localhost/reportserver"); ReportViewer1.ServerReport.ReportPath = "/Report Project1/Reconciliation"; List<ReportParameter> paramList = new List<ReportParameter>(); paramList.Add(new ReportParameter("StartDate", startdate.ToString(), false)); paramList.Add(new ReportParameter("EndDate", enddate.ToString(), false)); this.ReportViewer1.ServerReport.SetParameters(paramList); ReportViewer1.Visible = true; ``` I get this error when I try to run this report: ``` The permissions granted to user 'COMPUTERNAME\\ASPNET' are insufficient for performing this operation. (rsAccessDenied)"} System.Exception {Microsoft.Reporting.WebForms.ReportServerException} ``` Can anyone tell me what I am doing wrong?