Project Description
Create a UI to generate multiple reports from MS SQL Report Server.
This project is part of a larger application. The requirements for the application is to allow managers the ability to run reports for their employees. The managers wanted the ability to select multiple employees, which report to run and what file type to save
the report (.docx or .pdf) The app must also create a folder on a network share to save the reports to. The project is written in C#.
Application workflow
This app also uses the User Impersonation class created by Alex B. Clarke on http://www.codeproject.com/Articles/14358/User-Impersonation-in-NET
The impersonator class is used to create the folder on the network share and also to run and save the generated report as a Active Directory user with appropriate rights.
You must also set a web reference in your project to the reportexecution2005.asmx file located on your report server. (typical path would be http://reportservername/reportserver/reportexecution2005.asmx)