Tracing in Windows Communication Foundation
Tracing mechanism in Windows Communication Foundation is based on the
classes that resides in System.Diagnostic namespace.Important classes are Trace,
TraceSource and TraceListener.Following are the steps to enable tracing
in WCF:
1. Configuring WCF to emit tracing information/Define Trace Source,
we have the following options:
System.ServiceModel
System.ServiceModel.MessageLogging
System.ServiceModel.IdentityModel
System.ServiceModel.Activation
System.Runtime.Serialization
System.IO.Log
Cardspace...