Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
While running SSRS report each time asking about credentials.how to avoid each time asking about credentials while running ssrs report. i am already passed Credentials & Report server URL through web.config.
C#
IReportServerCredentials irsc = new CustomReportCredentials(TrippleDES.Decrypt(Functions.ToString(ConfigurationSettings.AppSettings["UserName"]))
                                       , TrippleDES.Decrypt(Functions.ToString(ConfigurationSettings.AppSettings["Password"]))
                                       , TrippleDES.Decrypt(Functions.ToString(ConfigurationSettings.AppSettings["DomainName"])));  
ReportViewer1.ServerReport.ReportServerCredentials
ReportViewer1.ServerReport.ReportServerUrl
Posted
Updated 2-Jul-12 2:08am
v2

1 solution

Does this link answer your question?

http://support.microsoft.com/kb/842517[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900