Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 Permissions Needed to ListSchedules

Author  Topic 

XericCoder
Starting Member

12 Posts

Posted - 2005-04-06 : 12:37:08
I'm trying to fire the ListSchedules method.

ReportingService reportServ = new ReportingService();
reportServ.Credentials = Common.WebServiceUser;
reportServ.Url = Common.ReportingServicesWebServer;

Schedule[] currentSchedules = reportServ.ListSchedules();

Through the report manager, I've given this user every possible permission, but I receive the "permissions insufficient for performing this operation" error. When I add this user to the admin group it works without a hitch. Naturally, this is not the solution I would like to implement. I ran through the code listing all of the secure methods, but it returned nothing.
Right now that user has little or no NT permissions on the SQL Server. I guess my question is what are the minimum permissions I need to assign that user for this method to work correctly?

XericCoder
Starting Member

12 Posts

Posted - 2005-04-08 : 12:59:20

From report manager navigate Site-settings
Configure site-wide security
Add the user that you are using to access through SOAP
Add them to a role(Create a new one or add them to system user)
Then give that role Manage shared schedules permission
Go to Top of Page
   

- Advertisement -