我正在尝试使用Enterprise Library 5.0的Logging Application块将简单消息记录到Win XP SP3系统上的Windows事件日志中:
Logger.Write(msg);
我在尝试登录时遇到“尝试获取LogWriter类型实例时出现激活错误”错误消息。
下面显示的是与MS Enterprise库一起使用的配置文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />
</configSections>
<loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
<listeners>
<add name="Event Log Listener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FormattedEventLogTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FormattedEventLogTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
source="Enterprise Library Logging" formatter="Text Formatter"
log="Application" machineName="." traceOutputOptions="None" />
</listeners>
<formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
template="Timestamp: {timestamp}{newline}
Message: {message}{newline}
Category: {category}{newline}
Priority: {priority}{newline}
EventId: {eventid}{newline}
Severity: {severity}{newline}
Title:{title}{newline}
Machine: {localMachine}{newline}
App Domain: {localAppDomain}{newline}
ProcessId: {localProcessId}{newline}
Process Name: {localProcessName}{newline}
Thread Name: {threadName}{newline}
Win32 ThreadId:{win32ThreadId}{newline}
Extended Properties: {dictionary({key} - {value}{newline})}"
name="Text Formatter" />
</formatters>
<categorySources>
<add switchValue="All" name="General">
<listeners>
<add name="Event Log Listener" />
</listeners>
</add>
</categorySources>
<specialSources>
<allEvents switchValue="All" name="All Events" />
<notProcessed switchValue="All" name="Unprocessed Category" />
<errors switchValue="All" name="Logging Errors & Warnings">
<listeners>
<add name="Event Log Listener" />
</listeners>
</errors>
</specialSources>
</loggingConfiguration>
</configuration>
答案 0 :(得分:14)
我只是想添加此错误可能是由另一个配置问题引起的。请务必查看此错误的内部异常。就我而言,它是:
“无法构建数据库类型。您必须配置容器以提供此值。”
要解决此问题,我必须在web.config中的数据库连接字符串中添加 providerName 。所以最终的连接字符串节点如下所示:
<add name="DBConn" connectionString="Data Source=ServerName;Initial Catalog=Logging;Persist Security Info=True;integrated security=True;" providerName="System.Data.SqlClient" />
答案 1 :(得分:11)
我意识到我试图在一个不起作用的DLL中使用Config文件。我应该使用FileConfigurationSource代替。
如果我从应用程序使用相同的App.Config,它工作正常。
答案 2 :(得分:2)
阅读这个问题的其他答案,根据我自己的经验,一般情况下,如果您的应用程序无法从配置文件中读取Logging应用程序块的某些必需配置,则会出现此错误。
为了添加前面答案中提到的场景,我偶尔会遇到这个错误:
1)在单元测试项目中,我忘了添加app.config文件;
2)在配置文件中,我从loggingConfiguration部分删除了一个特定的监听器,但忘记从引用它的categorySource中删除监听器的名称。
答案 3 :(得分:1)
缺少DLL;当您将DLL放在GAC时付费,您可能需要向GAC添加更多DLL。 Common,Data,Logging,Logging.Database和ServiceLocation DLLS确保它们一起驻留在一个目录中
答案 4 :(得分:0)
忘记添加对EntLib DLL的引用时,我也看到了这个错误。
答案 5 :(得分:0)
使用单独的entlib配置文件时,我遇到了同样的错误。
在Web.config中,enterpriseLibrary.ConfigurationSource指向EntLib.config。当我使用EnterpriseLibrary.Config工具编辑EntLib.config来设置日志数据库详细信息时,它将所有内容都放在EntLib.config中。我收到此错误,直到我将connetionStrings部分移动到Web.config。
答案 6 :(得分:0)
此外还有examples Simon Tewsi 我想添加我的示例,当日志记录配置位于单独的文件中但在app.config中错过了部分描述
<section name ="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging" />
<loggingConfiguration configSource="EnterpriseLibraryLogging.config" />