Created
January 10, 2016 11:24
-
-
Save miklund/91060945379b95c3df62 to your computer and use it in GitHub Desktop.
2011-11-02 Debug SOAP request and response in WCF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Title: Debug SOAP request and response in WCF | |
| # Author: Mikael Lundin | |
| # Link: http://localhost:4000/2011/11/02/debug-soap-request-and-response-in-wcf.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> | |
| <system.diagnostics> | |
| <sources> | |
| <source name="System.ServiceModel.MessageLogging"> | |
| <listeners> | |
| <add name="xml"/> | |
| </listeners> | |
| </source> | |
| </sources> | |
| <sharedListeners> | |
| <add name="xml" type="System.Diagnostics.XmlWriterTraceListener" initializeData="Traces.svclog" /> | |
| </sharedListeners> | |
| </system.diagnostics> | |
| <system.serviceModel> | |
| <diagnostics wmiProviderEnabled="true"> | |
| <messageLogging | |
| logEntireMessage="true" | |
| logMalformedMessages="true" | |
| logMessagesAtServiceLevel="true" | |
| logMessagesAtTransportLevel="true" | |
| maxMessagesToLog="3000" | |
| /> | |
| </diagnostics> | |
| </system.serviceModel> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment