SQL Server Reporting Services 2008: How to set the credentials property properly?
Posted
by wgpubs
on Stack Overflow
See other posts from Stack Overflow
or by wgpubs
Published on 2010-03-12T23:39:32Z
Indexed on
2010/03/12
23:47 UTC
Read the original article
Hit count: 263
No matter how I configure the Credentials property I get a 401 exception when I try to Render the report. Here is my (latest) code:
var rs = new ReportExecutionService();
rs.Url = "https://myserver/reportserver/reportexecution2005.asmx";
var myCache = new System.Net.CredentialCache();
myCache.Add(new Uri(rs.Url), "kerberos" , new System.Net.NetworkCredential("username", "password", "Domain"));
rs.Credentials = myCache;
The URL and credentials are all correct. But still getting a 401 when I cal rs.Render(...). The Reporting Services install is sitting on a Windows Server 2008 box and requires integrated authentication.
Thanks
© Stack Overflow or respective owner