asp.net - How to configure SSRS without using my Windows login and password? -
The way the SSRS works in my project, the ASP's Web The config file requires Windows user login and password. The net application that calls the report is a problem because I have to change the password as 90 days per security. Is it possible to configure the SSRS without any employee login and password?
This is the part that concerns me
& lt; Add key = "ReportServerUsername" value = "me" /> & Lt; Add key = "ReportServerPassword" value = "my password" /> & Lt; Add key = "ReportServerDomainname" value = "my domain /">
Yes, Set it to use the cloned / accredited credentials.
You have to configure the web application to use integrated authentication, then set the correct attribute in the config file.
& lt; authentication mode = "windows" /> gt; & lt; identification impersonation = "true" /> gt;
if this is done, then each Users
Comments
Post a Comment