Load Report Error
I have an ASP.net application that loads external reports dynamicaly into application using report object. When loading a report file that has security settings on it I get a Report Load Failed error unless I go to file's properties in windows explorer and add "domain\aspnet" to list of authorized users. I configured my application to use windows authentication and added
<authentication mode="Windows"/>
<identity impersonate ="true"/>
to my web.config. The user that is using the application is already under the file's security list and has Full Control permissions set, but I still can't load the file into the report object. Any ideas how I can pass the permissions for the file to be loaded?
|