在 .NET Framework 2.0 中未處理的異常導致基於 ASP.NET 的應用程式意外退出_實用技巧

來源:互聯網
上載者:User
但是,系統日誌中可能會記錄類似於以下內容的事件訊息:
事件類型:警告
事件來源:W3SVC
事件類別目錄:無
事件 ID: 1009
日期: 9/28/2005
時間:3:18:11
PM 使用者:N/A
電腦:IIS-SERVER
描述:
為應用程式集區“DefaultAppPool”提供服務的進程意外終止。進程 ID 是“2548”。進程結束代碼是“0xe0434f4d”。
而且,應用程式記錄檔中可能會記錄類似於以下內容的事件訊息:
事件類型:錯誤
事件來源:.NET Runtime 2.0 錯誤報表
事件類別目錄:無
事件 ID: 5000
日期: 9/28/2005
時間:3:18:02 PM
使用者:N/A
電腦:IIS-SERVER
描述:
EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.1830, P3 42435be1, P4 app_web_7437ep-9, P5 0.0.0.0, P6 433b1670, P7 9, P8 a, P9 system.exception, P10 NIL.


解決辦法:

方法 1修改 IHttpModule 對象的原始碼,以便將異常資訊記錄到應用程式記錄檔中。記錄的資訊將包含以下內容:
出現異常的虛擬目錄路徑
異常名稱
訊息
堆疊追蹤
要修改 IHttpModule 對象,請按照下列步驟操作。
注意:此代碼將會在應用程式記錄檔中記錄事件類型為“錯誤”且事件來源為“ASP.NET 2.0.50727.0”的訊息。要測試模組,可以請求使用 ThreadPool.QueueUserWorkItem 方法的 ASP.NET 頁,以調用引發未處理的異常的方法。
將下面的代碼放在名為 UnhandledExceptionModule.cs 的檔案中。
複製代碼 代碼如下:

using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Web;
namespace WebMonitor {
public class UnhandledExceptionModule: IHttpModule {
static int _unhandledExceptionCount = 0;
static string _sourceName = null;
static object _initLock = new object();
static bool _initialized = false;
public void Init(HttpApplication app) {
// Do this one time for each AppDomain.
if (!_initialized) {
lock (_initLock) {
if (!_initialized) {
string webenginePath = Path.Combine(RuntimeEnvironment.GetRuntimeDirectory(), "webengine.dll");
if (!File.Exists(webenginePath)) {
throw new Exception(String.Format(CultureInfo.InvariantCulture,
"Failed to locate webengine.dll at '{0}'. This module requires .NET Framework 2.0.",
webenginePath));
}
FileVersionInfo ver = FileVersionInfo.GetVersionInfo(webenginePath);
_sourceName = string.Format(CultureInfo.InvariantCulture, "ASP.NET {0}.{1}.{2}.0",
ver.FileMajorPart, ver.FileMinorPart, ver.FileBuildPart);
if (!EventLog.SourceExists(_sourceName)) {
throw new Exception(String.Format(CultureInfo.InvariantCulture,
"There is no EventLog source named '{0}'. This module requires .NET Framework 2.0.",
_sourceName));
}
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(OnUnhandledException);
_initialized = true;
}
}
}
}
public void Dispose() {
}
void OnUnhandledException(object o, UnhandledExceptionEventArgs e) {
// Let this occur one time for each AppDomain.
if (Interlocked.Exchange(ref _unhandledExceptionCount, 1) != 0)
return;
StringBuilder message = new StringBuilder("\r\n\r\nUnhandledException logged by UnhandledExceptionModule.dll:\r\n\r\nappId=");
string appId = (string) AppDomain.CurrentDomain.GetData(".appId");
if (appId != null) {
message.Append(appId);
}

Exception currentException = null;
for (currentException = (Exception)e.ExceptionObject; currentException != null; currentException = currentException.InnerException) {
message.AppendFormat("\r\n\r\ntype={0}\r\n\r\nmessage={1}\r\n\r\nstack=\r\n{2}\r\n\r\n",
currentException.GetType().FullName,
currentException.Message,
currentException.StackTrace);
}
EventLog Log = new EventLog();
Log.Source = _sourceName;
Log.WriteEntry(message.ToString(), EventLogEntryType.Error);
}
}
}


將 UnhandledExceptionModule.cs 檔案儲存到下面的檔案夾中:
C:\Program Files\Microsoft Visual Studio 8\VC
開啟 Microsoft Visual Studio 2005 命令提示字元視窗。
鍵入 sn.exe -k key.snk,然後按 Enter。
鍵入 csc /t:library /r:system.web.dll,system.dll /keyfile:key.snk UnhandledExceptionModule.cs,然後按 Enter。
鍵入 gacutil.exe /if UnhandledExceptionModule.dll,然後按 Enter。
鍵入 ngen install UnhandledExceptionModule.dll,然後按 Enter。
鍵入 gacutil /l UnhandledExceptionModule,然後按 Enter 以顯示 UnhandledExceptionModule 檔案的強式名稱。
9. 將下面的代碼添加到基於 ASP.NET 的應用程式的 Web.config 檔案中。
<add name="UnhandledExceptionModule"
    type="WebMonitor.UnhandledExceptionModule, <strong name>" />

方法 2將未處理異常策略更改回 .NET Framework 1.1 和 .NET Framework 1.0 中發生的預設行為。
注意:我們不建議您更改預設行為。如果忽略異常,應用程式可能會泄漏資源並放棄鎖定。
要啟用這種預設行為,請將下面的代碼添加到位於以下檔案夾的 Aspnet.config 檔案中:
複製代碼 代碼如下:

%WINDIR%\Microsoft.NET\Framework\v2.0.50727
<configuration>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true" />
</runtime>
</configuration>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.