使用模拟时编写事件日志

时间:2011-04-17 05:18:18

标签: c# .net asp.net event-log tracesource

出于某种原因,我在web.config中使用了impersonate选项。一切都很好,但有一个问题是我在使用System.Diagnostics.TraceSource写入事件日志时发生以下错误:

System.Web.HttpUnhandledException (0x80004005): 
Exception of type 'System.Web.HttpUnhandledException' was thrown. 
---> System.ComponentModel.Win32Exception (0x80004005): 
Access is denied at System.Diagnostics.EventLogInternal.InternalWriteEvent(UInt32 eventID, UInt16 category, EventLogEntryType type, String[] strings, Byte[] rawData, String currentMachineName) 
at System.Diagnostics.EventLogInternal.WriteEvent(EventInstance instance, Byte[] data, Object[] values) 
at System.Diagnostics.TraceSource.TraceEvent(TraceEventType eventType, Int32 id, String message)

有人给我一些建议吗?提前谢谢。

1 个答案:

答案 0 :(得分:0)

被模仿的用户没有权限写入事件日志。

我建议你使用一个任何用户都具有写访问权限的TraceListener(就像一个打开目录的文件。