How to enable WCF tracing
How to enable WCF trace:
Open config file in svcconfigeditor, from wizard, you can enable tracing and logging
STEP1:
Open config file in svcconfigeditor
STEP2:
Select Diagnostics option on left side, you will see Different tracing options on right side
STEP3:
If you just want to log soap request and response, you can choose Message Tracing
If you want trace service creation and all other activities, you can enable service tracing
Once you choose one of those options, you can choose, what level of tracing you want
(Like Verbose, or you want trace only error messages)
STEP4:
Click on Message Tracing, you will see different Message logging options, you can choose, you want to log Message at Transport level or Service level.
Reference:
https://msdn.microsoft.com/en-us/library/ms732009.aspx
Ok, Now I got trace file, How to view trace file:
Once you have log file, you can open client side trace and service side trace file in svctraceviewer and you can filter trace by different categories
https://windowssdk.msdn.microsoft.com/en-us/library/ms732023.aspx
Tracing and Logging Sample
https://msdn.microsoft.com/en-us/library/ms751526.aspx
MORE INFO ABOUT WMI AND PERF COUNTERS:
https://msdn.microsoft.com/en-us/library/ms735120.aspx
https://msdn.microsoft.com/en-us/library/ms735098.aspx
https://msdn.microsoft.com/en-us/library/ms751442.aspx
https://msdn.microsoft.com/en-us/library/ms751407.aspx
MORE INFO:
The Diagnostics tab enables you to turn performance counters on or off, enable or disable Windows Management Instrumentation (WMI), configure WCF tracing, and configure Windows Communication Foundation (WCF) message logging.
To control performance counters and WMI |
Click the Diagnostics tab.
To turn on WCF performance counters, select the Enable Performance Counters check box. Clear the box to turn off the counters.
To turn on WMI, select the Enable WMI check box. Clear the box to disable WMI.
Configuring Tracing
You can create a WCF trace file with standard properties or set up a custom trace file.
To create a trace file with standard properties |
Click the Diagnostics tab and click Tracing.
In the Diagnostics Tracing window that opens, click Create.
Choose a location for the trace file, and click Save.
Click OK to return to the Service Configuration Editor window.
To create a custom WCF trace file, you must configure both a source and listener.
To create a custom WCF trace file |
Click the Diagnostics tab, and then click Tracing.
In the Diagnostics Tracing window that opens, on the Listeners tab, click Add.
Enter the parameters for your trace file. Clicking the TypeName line displays a " … " button. Click the " … " button to open Trace Listener Type Browser, which you can use to find preconfigured trace listeners that are already installed.
Note the Source section. Click Add in this section to open a dialog box with a drop-down menu listing available tracing sources. Select a tracing source and click OK.
To apply your changes, click OK on each window until you return to the main Service Configuration Editor window.
Configuring Message Logging
You can create a WCF message logging file with standard properties or set up a custom logging file.
To create a message logging file with standard properties |
Click the Diagnostics tab and click Logging.
In the Message Logging Editor window that opens, click the Create button.
Choose a location for the log file and click Save.
Click OK to return to the Service Configuration Editor window.
To create a custom WCF message logging file, you must configure a source and a listener, as well as certain parameters.
To create a custom WCF message logging file |
Click the Diagnostics tab and click Logging.
In the Message Logging Editor window that opens, on the Listeners tab, click Add.
Enter the parameters for your trace file. Clicking the TypeName line displays a " … " button. Click the " … " button to open the Trace Listener Type Browser, which you can use to find preconfigured trace listeners that are already installed.
Note the Source section. Click Add in this section to open a dialog box with a drop-down menu listing available tracing sources. Select a tracing source and click OK.
Click the Logging tab to set logging parameters. For example, you might want to set LogEntireMessage to False to help manage the size of log files.
To apply your changes, click OK on each window until you return to the main Service Configuration Editor window.
Comments
Anonymous
May 18, 2006
PingBack from http://blog.sensepages.com/?p=72Anonymous
May 18, 2006
PingBack from http://blog.sensepages.com/sony-2006-601-reasons-theyll-failmicrosoft-has-added-its-own/Anonymous
May 18, 2006
PingBack from http://www.marcmercuri.com/PermaLink.aspx?guid=52185e87-77de-4b5c-b675-0d9fe94005d1Anonymous
June 26, 2006
You can write your own customer trace listener and add this listener info to WCF application configuration...Anonymous
September 07, 2006
I had a problem with a WCF service that I created in that I couldn't access the Metadata Exchange (MEX)Anonymous
August 01, 2007
The comment has been removedAnonymous
August 28, 2008
PingBack from http://blog.lulutech.com/PermaLink,guid,55a573ca-aebc-4ad0-8ead-a877c65095cc.aspxAnonymous
September 02, 2008
PingBack from http://blog.lulutech.com/PermaLink,guid,6431557d-cf92-407b-b049-b8a80710dc6f.aspxAnonymous
September 11, 2008
The Reference link in step 4 is brokenAnonymous
October 16, 2008
Thanks,MSDN magic, i fixed broken linksAnonymous
November 30, 2008
I am going to impliment this logic in my project