MyHttpModuler
レポート サービスにカスタム HttpModule を追加しようとしています。しかし、カスタム HttpModule をリモート マシンにある SSRS にデプロイしたとき。次に、レポート管理サイトでいくつかのレポートを閲覧します。私のページにエラーが発生しました。SSRS ログ フォルダーの下にあるログ ファイルをチェックして、何が起こったのかを調べていました。そして、私は常にいくつかの例外情報がログに記録されているのを見つけます。ただし、例外ログにはコード行番号が表示されません。ログの例は以下のようになります。
library!ReportServer_0-1!728!08/22/2012-13:36:29:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details., ;
Info: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details. ---> System.NullReferenceException: Object reference not set to an instance of an object.
at HandlerLib.MyHttpModuler.TryAuthenticate(HttpApplication context)
at HandlerLib.MyHttpModuler.Application_BeginRequest(Object sender, EventArgs e)
at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
コードの欠陥の詳細を知ることができるように、例外ログのコード行を表示する方法はありますか? ありがとう