如何启用
WSE2.0
的
Trace
功能
摘要 :郑昀 @UltraPower 简单介绍了使用了 WSE2.0 的应用程序如何启用 WSE2.0自身 的 Trace 。
给我们的应用的 “App.exe.config” 配置文件添加下面的粗字体:
< configSections >
<
section
name
="microsoft.web.services2"
type
="Microsoft.Web.Services2.Configuration.WebServicesConfiguration, Microsoft.Web.Services2, Version=
</ configSections >
< microsoft.web.services2 >
< diagnostics >
< trace enabled ="true" input ="InputTrace.xml" output ="OutputTrace.xml" />
< detailedErrors enabled ="true" />
</ diagnostics >
</ microsoft.web.services2 >
这样,重启了服务之后,如果有进出的 SOAP 消息,可以在服务本目录下看到有 “InputTrace.xml” 和 “OutputTrace.xml” 。
这两个文件就自动记录了进出的 SOAP 完整包。
InputTrace.XML 的内容示范如下 , 第一个包就是发送了一个对 111 的查询请求:
当你调试WSE时,可以启用这个功能,将对你的调试工作起到极大的促进作用!
当你调试WSE时,可以启用这个功能,将对你的调试工作起到极大的促进作用!
编写者: 郑昀 @UltraPower
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=336113