The permissions granted to user 'NT AUTHORITY\NETWORK SERVICE' are insufficient for performing this operation reportviewer
I had a .aspx page wherein i embedded a Microsoft.Reporting.Webforms.ReportViewer with the processingmode as "Remote". On the report server side, i deployed my .rdl file which uses a dataset. When i put my web application in a Test environment, i was receiving the following error on accessing the .aspx page:
The permissions granted to user 'NT AUTHORITY\NETWORK SERVICE' are insufficient for performing this operation reportviewer
Upon some research i found the following resolution:
1. Go to http://dotdevsql2/Reports/Pages/Folder.aspx
2. Open the Properties of the respective report
3. Under security tab: add NT AUTHORITY\NETWORK SERVICE
Thats it, the above error was gone but landed up in another error that i will describe in my next post. The error was :
An error has occurred during report processing. (rsProcessingAborted)
Query execution failed for dataset 'dataset1'. (rsErrorExecutingCommand)
For more information about this error navigate to the report server on the local server machine, or enable remote errors
The permissions granted to user 'NT AUTHORITY\NETWORK SERVICE' are insufficient for performing this operation reportviewer
Upon some research i found the following resolution:
1. Go to http://dotdevsql2/Reports/Pages/Folder.aspx
2. Open the Properties of the respective report
3. Under security tab: add NT AUTHORITY\NETWORK SERVICE
Thats it, the above error was gone but landed up in another error that i will describe in my next post. The error was :
An error has occurred during report processing. (rsProcessingAborted)
Query execution failed for dataset 'dataset1'. (rsErrorExecutingCommand)
For more information about this error navigate to the report server on the local server machine, or enable remote errors
Comments