我正在开发Visual Studio 2010中的Windows窗体应用程序。这是通过https使用soap webservice。我需要跟踪要调试的消息。我发现Soap Extension就是解决方案。但是,它只能用于Web应用程序。
答案 0 :(得分:1)
您是否已选中服务跟踪查看器工具。 here is the link
在您的app配置文件中使用:
<system.diagnostics>
<trace autoflush="true" />
<sources>
<source name="System.ServiceModel"
switchValue="Information, ActivityTracing"
propagateActivity="true">
<listeners>
<add name="sdt"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData= "SdrConfigExample.e2e" />
</listeners>
</source>
</sources>