Is there any way to make SSRS URL requests from my JavaScript AJAX code to get the list of folders?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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#.