WebForm下的ReportViewer控件不能直接传入身份凭证,因为其ServerReport.ReportServerCredentials.NetworkCredentials属性是只读的。
有一个接口叫IReportServerCredentials,报表服务中定制化身份验证方式的就靠它了。
既然是接口,那么我们就要先利用这个接口创建一个类,然后类中实现这个接口的成员。IReportServerCredentials接口主要是两个成员属性(ImpersonateUser和NetworkCredentials)和一个成员方法(GetFormCredentials)。
ImpersonateUser在我们这儿没什么多大用处,哈,所以直接return null。NetworkCredentials就是我们需要返回的,所以return new NetworkCredential(_username, _password, _domain)。
那么_username、_password、_domain哪儿来的呢,类里面放三个Private的变量,然后通过类的初始化方法传进去就行了啊。
这样就搞定了阿。下面是类的源代码和调用类的源代码:
/********************************************************************************
MyReportViewerCredential类
********************************************************************************/
using System;
using System.Net;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Microsoft.Reporting.WebForms;
using System.Web.SessionState;
using System.Security.Principal;
public class MyReportViewerCredential:IReportServerCredentials
{
private string _username;
private string _password;
private string _domain;
public Uri ReportServerUrl;
/// <summary>
/// 带参构造函数
/// </summary>
/// <param name="username">用户名</param>
/// <param name="password">密码</param>
/// <param name="domain">登录域名(也可以为计算机名或IP)</param>
public MyReportViewerCredential(string username, string password, string domain)
{
_username = username;
_password = password;
_domain = domain;
}
#region IReportServerCredentials 成员
public bool GetFormsCredentials(out System.Net.Cookie authCookie, out string userName, out string password, out string authority)
{
authCookie = null;
userName = _username;
password = _password;
authority = _domain;
return false;
}
public System.Security.Principal.WindowsIdentity ImpersonationUser
{
get { return null; }
}
public System.Net.ICredentials NetworkCredentials
{
get { return new System.Net.NetworkCredential(_username, _password, _domain); }
}
#endregion
}
/********************************************************************************
调用MyReportViewerCredential类
********************************************************************************