尝试配置log4net时TypeInitializationException

时间:2016-10-05 17:27:58

标签: c# wpf log4net log4net-configuration

我有一个VS2015解决方案,它包含一个服务层,它公开了一组WCF服务,以及一个使用它们的WPF客户端。我已经配置了log4net并且在服务层中正常工作

我现在想在客户端使用log4net,因此添加了log4net NuGet包,并将节点从服务层的配置文件复制到客户端的App.config文件中。完整文件看起来像这样......

<?xml version="1.0"
      encoding="utf-8"?>

<configuration>
  <startup>
    <supportedRuntime version="v4.0"
                      sku=".NETFramework,Version=v4.5.2" />
  </startup>

  <log4net>
    <appender name="RollingFileAppender"
              type="log4net.Appender.RollingFileAppender">
      <param name="File"
             value="PhysioDiary.log" />
      <appendToFile value="true" />
      <rollingStyle value="Size" />
      <maxSizeRollBackups value="2" />
      <maximumFileSize value="1MB" />
      <staticLogFileName value="true" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%date [%thread] %-7level %logger - %message%newline%exception" />
      </layout>
    </appender>
    <root>
      <level value="DEBUG" />
      <appender-ref ref="RollingFileAppender" />
    </root>
  </log4net>

  <system.serviceModel>
    <behaviors>
      <endpointBehaviors>
        <behavior name="LargeMessageBehavior">
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
        </behavior>
      </endpointBehaviors>
    </behaviors>

    <bindings>
      <customBinding>
        <binding name="CustomBindingDefault"
                 closeTimeout="00:59:00"
                 openTimeout="00:59:00"
                 receiveTimeout="00:59:00"
                 sendTimeout="00:59:00">
          <binaryMessageEncoding>
            <readerQuotas maxDepth="6400"
                          maxStringContentLength="100000000"
                          maxArrayLength="2147483647" />
          </binaryMessageEncoding>
          <httpTransport maxBufferPoolSize="2147483647"
                         maxReceivedMessageSize="2147483647"
                         bypassProxyOnLocal="true"
                         keepAliveEnabled="false"
                         maxBufferSize="2147483647">
            <extendedProtectionPolicy policyEnforcement="Never" />
          </httpTransport>
        </binding>
      </customBinding>
    </bindings>

    <client>
      <endpoint address="http://localhost:5448/AppointmentsService.svc"
                behaviorConfiguration="LargeMessageBehavior"
                binding="customBinding"
                bindingConfiguration="CustomBindingDefault"
                contract="AppointmentsServiceReference.AppointmentsService"
                name="CustomBinding_AppointmentsService" />
      <!-- Other WCF services here, snipped for clarity -->
    </client>
  </system.serviceModel>
</configuration>

即使在任何地方使用log4net之前,如果我现在尝试运行客户端,我也会遇到异常......

  

未处理的类型&#39; System.TypeInitializationException&#39;   发生在PresentationFramework.dll

中      

附加信息:类型初始化程序   &#39; System.Windows.Application&#39;抛出异常。

......客户不会开始。它不会破坏任何代码,因此我无法看到堆栈跟踪,也无法查看是否存在内部异常。

如果我注释掉节点的内容,但是将空节点留在那里,我仍然会得到异常,所以它似乎不是节点的内容,也不是RollingFileAppender的问题。

我检查了引用,两个项目都引用了log4net v2.0.5,并且没有任何其他log4net引用。这两个项目都使用Ninject,虽然我不确定这是否相关,因为我没有在任何一个项目中注入log4net(但是,这是下一步)。

这不是this SO question中报告的问题,因为我的配置文件没有appSettings或configSections。此外,启动节点始终是文件中的第一个,这从未引起过问题。我确实尝试将它移到最后,但它没有帮助。

当我尝试将log4net添加到WPF客户端时,有人想知道它崩溃的原因吗?

1 个答案:

答案 0 :(得分:3)

我认为它需要注册一个带有配置部分的类型 - 类似于: /back.png