SSRS での作業を開始したばかりで、非常に奇妙な問題が発生しました。つまり、レポート サーバーの URL、つまり localhost/Reports を呼び出しているときに
この URL には、ユーザー名とパスワードの認証ウィンドウが必要です。このような。
その場合、ローカル システムのユーザー アカウント情報を送信すると、目的のレポート サーバー画面が表示されます。このような。
デモ Web アプリケーションを作成し、default.aspx ページでReportViewer
レポートの表示と構成に使用しています。ここに私が使用しているコードがあります
Default.aspx
ページ
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Width="100%">
</rsweb:ReportViewer>
Default.aspx.cs
ページ
ReportViewer1.ProcessingMode = ProcessingMode.Remote;
IReportServerCredentials irsc = new CustomReportCredentials("username", "password", "India");
ReportViewer1.ServerReport.ReportServerCredentials = irsc;
ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://localhost/Reports");
ReportViewer1.ServerReport.ReportPath = "/SSRS_Demo/Report_CaseMain";
ReportViewer1.ServerReport.Refresh();
CustomReportCredentials.cs
クラス
public class CustomReportCredentials : IReportServerCredentials
{
// local variable for network credential.
private string _UserName;
private string _PassWord;
private string _DomainName;
public CustomReportCredentials(string UserName, string PassWord, string DomainName)
{
_UserName = UserName;
_PassWord = PassWord;
_DomainName = DomainName;
}
public WindowsIdentity ImpersonationUser
{
get
{
return null; // not use ImpersonationUser
}
}
public ICredentials NetworkCredentials
{
get
{
// use NetworkCredentials
return new NetworkCredential(_UserName, _PassWord, _DomainName);
}
}
public bool GetFormsCredentials(out Cookie authCookie, out string user, out string password, out string authority)
{
// not use FormsCredentials unless you have implements a custom autentication.
authCookie = null;
user = password = authority = null;
return false;
}
}
その場合、このWebアプリケーションを実行している間、エラーが発生します
これらすべてのエラーを解決するにはどうすればよいか教えてください.....