在Windows窗体应用程序中跟踪soap消息

时间:2016-01-28 10:44:33

标签: c# .net soap wsdl

我正在开发Visual Studio 2010中的Windows窗体应用程序。这是通过https使用soap webservice。我需要跟踪要调试的消息。我发现Soap Extension就是解决方案。但是,它只能用于Web应用程序。

1 个答案:

答案 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>