web-dev-qa-db-ja.com

LogWriterタイプのインスタンスを取得しようとしたときにアクティベーションエラーが発生しました

Enterprise Library5.0のLoggingApplicationブロックを使用して、Win XP SP3システムで次を使用してWindowsイベントログに簡単なメッセージを記録しようとしています。

Logger.Write(msg);

ログに記録しようとすると、「LogWriterタイプのインスタンスを取得しようとしたときにアクティベーションエラーが発生しました」というエラーメッセージが表示されます。

以下に示すのは、MSEnterpriseライブラリで使用される構成ファイルです。

<?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}&#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="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 &amp; Warnings">
            <listeners>
                <add name="Event Log Listener" />
            </listeners>
        </errors>
    </specialSources>
</loggingConfiguration>
</configuration>
16
user349339

このエラーを追加したかったのですが、別の構成の問題が原因である可能性があります。このエラーの内部例外を確認してください。私の場合は次のとおりです。

"タイプデータベースを構築できません。この値を提供するようにコンテナーを構成する必要があります。"

これを解決するには、web.configのデータベース接続文字列にproviderNameを追加する必要がありました。したがって、最終的な接続文字列ノードは次のようになります。

 <add name="DBConn" connectionString="Data Source=ServerName;Initial Catalog=Logging;Persist Security Info=True;integrated security=True;" providerName="System.Data.SqlClient" />
14
EthanTowne

DLL)内から構成ファイルを使用しようとしていることに気付きましたが、これは機能しません。代わりにFileConfigurationSourceを使用する必要があります。

アプリケーションから同じApp.Configを使用すると、正常に機能しました。

11
user349339

この質問に対する他の回答を読むと、私自身の経験から、一般に、このエラーは、アプリケーションが構成ファイルからLoggingアプリケーションブロックに必要な構成を読み取れない場合に発生するようです。

以前の回答で述べたシナリオに追加するために、私はこのエラーに数回遭遇しました:

1)ユニットテストプロジェクトで、app.configファイルを追加するのをまったく忘れていました。

2)loggingConfigurationセクションから特定のリスナーを削除したが、それを参照しているcategorySourceからリスナーの名前を削除するのを忘れた構成ファイル。

2
Simon Tewsi

DLLがありません。 DLLをGACに配置するときは、注意を払ってください。GACにDLLを追加する必要がある場合があります。 Common、Data、Logging、Logging.Database、およびServiceLocation DLLは、それらが1つのディレクトリに一緒に存在することを確認します

1
Sameh

EntLib DLLへの参照を追加するのを忘れたときにも、このエラーが発生しました。

0
Joe Niland

examples of Simon Tewsi に加えて、ログ設定が別のファイルにあるが、app.configでセクションの説明が欠落している場合の例を追加したい

<section name ="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging" />  

 <loggingConfiguration configSource="EnterpriseLibraryLogging.config" />

別のentlib構成ファイルを使用したときに同じエラーが発生しました。

Web.configで、enterpriseLibrary.ConfigurationSourceがEntLib.configを指していました。 EnterpriseLibrary.Configツールを使用してEntLib.configを編集し、ログデータベースの詳細を設定すると、すべてがEntLib.configに配置されます。 connetionStringsセクションをWeb.configに移動するまで、このエラーが発生しました。

0
SGarratt