Reputation: 93
Is there any way to make SSRS URL requests from my JavaScript AJAX code to get the list of folders?
Upvotes: 0
Views: 947
Reputation: 3385
I've had similar problem in the past. You need to use ReportExecution service (reportexecution2005.asmx) or ReportService (reportservice2005.asmx)
The difference between the two is that the first one allows you to render reports, while the second one allows you to manipulate folders/files on the report server.
ReportService2005.asmx has a method called ListChildren()
which I was able to use successfully from C#.
Upvotes: 1