ListChildren SQL Reporting Service
Posted
by markpirvine
on Stack Overflow
See other posts from Stack Overflow
or by markpirvine
Published on 2010-03-31T12:00:21Z
Indexed on
2010/03/31
12:03 UTC
Read the original article
Hit count: 391
Hi,
I'm trying to get a list of available reports via the webservice for SQL Reporting Services 2005 express edition. Each time I try to call the ListChildren method I get an insuffient permission exception. The code is:
ReportingService2005SoapClient rService = new ReportingService2005SoapClient();
CatalogItem[] cItems = null;
rService.ListChildren("/", false, out cItems);
I added the ASP.net (iusr) account into the local admin group on the PC and still get the exception.
Is this method supported in the express edition?
Mark
© Stack Overflow or respective owner