首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

[WebService课程]使用soapmonitor模块监视soap请求与响应消息 - 10

2012-10-25 
[WebService教程]使用soapmonitor模块监视soap请求与响应消息 - 10?? 在Axis2中提供了一个Axis2模块(soapm

[WebService教程]使用soapmonitor模块监视soap请求与响应消息 - 10

?? 在Axis2中提供了一个Axis2模块(soapmonitor),该模块实现了与《WebService大讲堂之Axis2(9):编写Axis2模块(Module)》中实现的logging模块相同的功能,所不同的是,logging模块直接将SOAP请求与响应消息输出到Tomcat控制台中,而soapmonitor模块利用applet直接在页面中输出SOAP请求和响应消息。

???第3步:在services.xml文件中引用soapmonitor模块

???

? 由于soapmonitor模块已经在axis2.xml进行配置了,因此,在本例中不需要再对axis2.xml文件进行配置了。???

图1

[WebService课程]使用soapmonitor模块监视soap请求与响应消息 - 10

?? 如果读者想让logging和soapmonitor模块监视部署在Axis2中的所有WebService,可以在axis2.xml文件中使用<module>元素来引用这两个模块,代码如下:

    <!--  引用logging模块  -->    <module ref="logging"/>    <!--  引用soapmonitor模块  -->    <module ref="soapmonitor"/>

?

热点排行