首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >从企业图书馆5升级到6

从企业图书馆5升级到6
EN

Stack Overflow用户
提问于 2016-05-26 15:46:07
回答 2查看 1.6K关注 0票数 1

我正在将现有的应用程序从5升级到6。我的应用程序是.NET web应用程序。我依赖企业库将任何错误记录到数据库(sql server)。

我的应用程序还使用自定义数据库侦听器和自定义日志异常处理程序(这两种方式都是我的解决方案中单独的.net项目)。

因此,我已经安装了6个,并将以下代码添加到Application_Start-

代码语言:javascript
复制
             IConfigurationSource config = ConfigurationSourceFactory.Create();
        ExceptionPolicyFactory factory = new ExceptionPolicyFactory(config);
        Logger.SetLogWriter(new LogWriterFactory().Create());

        ExceptionManager exceptionManager = factory.CreateManager();

当System.NotImplementedException击中Logger.SetLogWriter(新的LogWriterFactory().Create());代码行时,就会得到它。

编辑:更详细的错误信息

代码语言:javascript
复制
 System.NotImplementedException was unhandled by user code
 HResult=-2147467263
 Message=Must be implemented by subclasses.
 Source=Microsoft.Practices.EnterpriseLibrary.Logging

我做错了什么?

这是我的web.config-

代码语言:javascript
复制
   <configSections>
<section name="exceptionHandling" type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Configuration.ExceptionHandlingSettings, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling" requirePermission="true" />
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />
<section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings, Microsoft.Practices.EnterpriseLibrary.Data, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />


 </configSections>
<loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
<listeners>
  <add name="Database Trace Listener" type="ExtendedPropertyDatabaseListener.ExtendedFormattedDatabaseTraceListener, ExtendedPropertyDatabaseListener" listenerDataType="ExtendedPropertyDatabaseListener.ExtendedFormattedDatabaseTraceListenerData, ExtendedPropertyDatabaseListener" databaseInstanceName="ablmprod" writeLogStoredProcName="Logging.WriteLog" addCategoryStoredProcName="Logging.AddCategory" formatter="Text Formatter" />
  <add name="Event Log Trace Listener" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FormattedEventLogTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FormattedEventLogTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" source="Enterprise Library Logging" formatter="Text Formatter" />
</listeners>
<formatters>
  <add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.505.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" template="Timestamp: {timestamp}{newline}&#xA;Message: {message}{newline}&#xA;Category: {category}{newline}&#xA;Priority: {priority}{newline}&#xA;EventId: {eventid}{newline}&#xA;Severity: {severity}{newline}&#xA;Title:{title}{newline}&#xA;Machine: {localMachine}{newline}&#xA;App Domain: {localAppDomain}{newline}&#xA;ProcessId: {localProcessId}{newline}&#xA;Process Name: {localProcessName}{newline}&#xA;Thread Name: {threadName}{newline}&#xA;Win32 ThreadId:{win32ThreadId}{newline}&#xA;Extended Properties: {dictionary({key} - {value}{newline})}" name="Text Formatter" />
</formatters>
<categorySources>
  <add switchValue="All" name="General">
    <listeners>
      <add name="Database Trace Listener" />
    </listeners>
  </add>
</categorySources>
<specialSources>
  <allEvents switchValue="All" name="All Events" />
  <notProcessed switchValue="All" name="Unprocessed Category" />
  <errors switchValue="All" name="Logging Errors &amp; Warnings">
    <listeners>
      <add name="Event Log Trace Listener" />
    </listeners>
  </errors>
</specialSources>
</loggingConfiguration>
<exceptionHandling>
  <exceptionPolicies>
  <add name="Policy">
    <exceptionTypes>
      <add name="All Exceptions" type="System.Exception, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" postHandlingAction="NotifyRethrow">
        <exceptionHandlers>
          <add name="Logging Exception Handler" type="CustomExceptionLoggingHandler.CustomExceptionLoggingHandler, CustomExceptionLoggingHandler" logCategory="General" eventId="100" severity="Error" title="Enterprise Library Exception Handling" formatterType="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.TextExceptionFormatter, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling" priority="0" />
        </exceptionHandlers>
      </add>
    </exceptionTypes>
  </add>
</exceptionPolicies>
</exceptionHandling>

编辑:感谢@lrb让我走上正确的道路。这是有效的密码-

代码语言:javascript
复制
protected void Application_Start()
{
    LoggingConfiguration loggingConfiguration = BuildLoggingConfig();
    LogWriter logWriter = new LogWriter(loggingConfiguration);
    Logger.SetLogWriter(logWriter, false);
    ExceptionPolicy.SetExceptionManager(exManager);

    // Create the default ExceptionManager object programatically
    exManager = BuildExceptionManagerConfig(logWriter);

    // Create an ExceptionPolicy to illustrate the static HandleException method
    ExceptionPolicy.SetExceptionManager(exManager);

           ...
}

private static LoggingConfiguration BuildLoggingConfig()
{
    // Formatters

    var config = new LoggingConfiguration();

    return config;
}

private static ExceptionManager BuildExceptionManagerConfig(LogWriter logWriter)
{
    var policies = new List<ExceptionPolicyDefinition>();

    var logAndWrap = new List<ExceptionPolicyEntry>
            {

                new ExceptionPolicyEntry(typeof (Exception),
                    PostHandlingAction.ThrowNewException,
                    new IExceptionHandler[]
                     {
                       new WrapHandler("An application error has occurred.",
                         typeof(APIAvailabilityException))
                     })
            };

    policies.Add(new ExceptionPolicyDefinition("Policy", logAndWrap));

    return new ExceptionManager(policies);
}
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2016-05-26 15:56:51

它有了一点变化。你只需要一个虚拟的ConfugurationSource。这是默认的一切,因为它是,并对我工作。请注意SetLogWriter方法的可选SetLogWriter参数。这些文件指出:

如果已经设置了写入器,则为true抛出异常;否则为false。默认为true。

代码语言:javascript
复制
IConfigurationSource configurationSource = ConfigurationSourceFactory.Create();
LogWriterFactory logWriterFactory = new LogWriterFactory(configurationSource);                
Logger.SetLogWriter(logWriterFactory.Create(),false);
Logger.Write(le);
票数 0
EN

Stack Overflow用户

发布于 2016-09-05 13:49:28

对于那些仍然有这个问题的人来说,有更多的信息,并且建议的解决方案不起作用。

出现此异常的一个可能原因是,CoreBuildTraceListener方法没有在您的自定义TraceListenerData类中实现(如果使用的话)。

在我的示例中,我必须添加以下内容才能使其工作(代码是特定于我的实现的):

代码语言:javascript
复制
protected override TraceListener CoreBuildTraceListener(LoggingSettings settings)
{
    return new RollingXmlTraceListener(
        this.FileName,
        this.RollSizeKB,
        this.TimeStampPattern,
        this.RollFileExistsBehavior,
        this.RollInterval,
        this.MaxArchivedFiles);
}
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/37465544

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档