I want to write CustomTraceListener which writes all data to SQL Server DB. Here's the stub for it:

public class SqlTraceListener : TraceListener 
{
    public SqlTraceListener()
        : base()
    { }

    public SqlTraceListener(String name)
        : base(name)
    { }

    protected override string[] GetSupportedAttributes()
    {
        List<string> attributes = new List<string>();
        attributes.Add("connectionString");
        attributes.Add("actionFilter");
        attributes.Add("hostFilter");
        return base.GetSupportedAttributes();
    }

    public override void TraceData(TraceEventCache eventCache, string source, TraceEventType eventType, int id, object data)
    {  }//Other empty methods...

}

In overridden method TraceData I want to catch SOAP messages sent to my WCF service. But when I check what is in "data" parameter I get this: (sorry for posting xml as pictures - it seems SO editor doesn't allow some xml keywords in posts):

enter image description here But according to standard XmlWriterTraceListener I should get this:

enter image description here

How to configure TraceListener not to eliminate SOAP messages? My config is here:

  <system.diagnostics>
<sources>
  <source name="System.ServiceModel.MessageLogging">
    <listeners>
      <add name="xml"/>
      <add name="sql"/>
    </listeners>
  </source>
</sources>
<sharedListeners>
  <add initializeData="C:\logs\StockPriceService.svclog" type="System.Diagnostics.XmlWriterTraceListener" name="xml"/>
  <add type="SqlTraceListener.SqlTraceListener, SqlTraceListener" name="sql"/>
</sharedListeners>
<trace autoflush="true"/>

link|improve this question

73% accept rate
Did you find a solution to your problem? – lakai Aug 9 '11 at 5:48
1  
Unfortunately no. I used standard XmlWriterTraceListener as a stub for a while. – Dima Aug 9 '11 at 7:56
feedback

1 Answer

Is there any reason you're not using the out of the box database trace listener? See: Enterprise Library Database Trace Listener?.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.