Created
December 28, 2015 20:49
-
-
Save miklund/a92062ad11534905ac2a to your computer and use it in GitHub Desktop.
2010-01-20 WCF: The connection was closed unexpectedly
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: WCF: The connection was closed unexpectedly | |
# Author: Mikael Lundin | |
# Link: http://blog.mikaellundin.name/2010/01/20/wcf-the-connection-was-closed-unexpectedly.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
<system.diagnostics> | |
<!-- This logging is great when WCF does not work. --> | |
<sources> | |
<source name="System.ServiceModel" switchValue="Information, ActivityTracing" propagateActivity="true"> | |
<listeners> | |
<add name="traceListener" type="System.Diagnostics.XmlWriterTraceListener" initializeData= "c:\traces.svclog" /> | |
</listeners> | |
</source> | |
</sources> | |
</system.diagnostics> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment