`
yongguang423
  • 浏览: 110578 次
  • 性别: Icon_minigender_1
  • 来自: 山东
社区版块
存档分类
最新评论

Axis Web Service开发之旅 (九) --使用soapmonitor模块监视soap请求与响应消息

阅读更多

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

    下面是配置和使用soapmonitor模块的步骤:   

第1步:部署Applet和Servlet

    由于axis2默认情况下已经自带了soapmonitor模块,因此,soapmonitor模块并不需要单独安装。但applet所涉及到的相应的.class文件需要安装一下。在<Tomcat安装目录>\webapps\axis2\WEB-INF\lib目录中找到soapmonitor-1.4.1.jar文件,将该文件解压。虽然applet并不需要soapmonitor-1.4.1.jar文件中所有的.class文件,但为了方便,读者也可以直接将解压目录中的org目录复制到<Tomcat安装目录>\webapps\axis2目录中,Applet所需的.class文件需要放在这个目录。然后再将org目录复制到<Tomcat安装目录>\webapps\axis2\WEB-INF\classes目录中,soapmonitor模块中的Servlet所对应的.class文件需要放在这个目录。

第2步:配置Servlet

    打开<Tomcat安装目录>\webapps\axis2\WEB-INF\web.xml文件,在其中加入如下的内容:

<servlet>  
    <servlet-name>SOAPMonitorService</servlet-name>  
    <servlet-class>  
        org.apache.axis2.soapmonitor.servlet.SOAPMonitorService   
    </servlet-class>  
    <init-param>  
        <param-name>SOAPMonitorPort</param-name>  
        <param-value>5001</param-value>  
    </init-param>  
    <load-on-startup>1</load-on-startup>  
</servlet>  
<servlet-mapping>  
    <servlet-name>SOAPMonitorService</servlet-name>  
    <url-pattern>/SOAPMonitor</url-pattern>  
</servlet-mapping>  
<servlet>
    <servlet-name>SOAPMonitorService</servlet-name>
    <servlet-class>
        org.apache.axis2.soapmonitor.servlet.SOAPMonitorService
    </servlet-class>
    <init-param>
        <param-name>SOAPMonitorPort</param-name>
        <param-value>5001</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>SOAPMonitorService</servlet-name>
    <url-pattern>/SOAPMonitor</url-pattern>
</servlet-mapping>
 

 


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


    与引用logging模块一样,引用soapmonitor模块也需要使用<module>元素,引用soapmonitor模块的services.xml文件的内容如下:

<service name="myService">  
    <description>  
        使用logging和soapmonitor模块   
    </description>  
    <!--  引用logging模块  -->  
    <module ref="logging"/>  
    <!--  引用soapmonitor模块  -->  
    <module ref="soapmonitor"/>  
    <parameter name="ServiceClass">  
        service.MyService      
    </parameter>  
    <messageReceivers>  
        <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out"  
            class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />  
    </messageReceivers>  
</service>  
<service name="myService">
    <description>
        使用logging和soapmonitor模块
    </description>
    <!--  引用logging模块  -->
    <module ref="logging"/>
    <!--  引用soapmonitor模块  -->
    <module ref="soapmonitor"/>
    <parameter name="ServiceClass">
        service.MyService   
    </parameter>
    <messageReceivers>
        <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out"
            class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
    </messageReceivers>
</service>

 
 


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

第4步:使用soapmonitor模块

    启动Tomcat后,在浏览器中输入如下的URL:
http://localhost:8080/axis2/SOAPMonitor


    在浏览器中将出现soapmonitor所带的Applet的界面,当访问MyService的getGreeting方法时,在Tomcat控制台与Applet中都显示了相应的SOAP请求和响应消息


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

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

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/crazystone4/archive/2009/06/20/4285768.aspx

分享到:
评论

相关推荐

    WebService大讲堂之Axis2(10):使用soapmonitor模块监视soap请求与响应消息

    在《WebService大讲堂之Axis2(10):使用soapmonitor模块监视SOAP请求与响应消息》这篇文章中,作者介绍了如何通过Axis2中的soapmonitor模块来监视和查看SOAP请求及响应消息。这一模块的功能类似于之前的logging...

    axis2-eclipse-codegen-plugin-1.6.2.zip和axis2-eclipse-service-plugin-1.6.2.zip

    标题中的"axis2-eclipse-codegen-plugin-1.6.2.zip"和"axis2-eclipse-service-plugin-1.6.2.zip"是两个与Apache Axis2相关的Eclipse插件,用于简化Web服务的开发过程。Apache Axis2是Java平台上一个成熟的Web服务...

    axis2-eclipse-codegen-plugin-1.6.2和axis2-eclipse-service-plugin-1.6.2

    标题中的"axis2-eclipse-codegen-plugin-1.6.2和axis2-eclipse-service-plugin-1.6.2"指的是两个与Apache Axis2相关的Eclipse插件:Axis2代码生成插件和Axis2服务插件,它们是版本1.6.2的。Apache Axis2是一个流行的...

    java-ws-clients.rar_SOAP Web_Web Service SOAP_axis

    Java Web服务客户端是Java开发人员用来与Web服务交互的重要工具,尤其在基于SOAP(Simple Object Access Protocol)协议的通信中。本压缩包“java-ws-clients.rar”包含了一些关于如何使用Java和Apache Axis库创建及...

    axis2-eclipse-codegen-plugin-1.6.2+axis2-eclipse-service-plugin-1.6.2

    总的来说,"axis2-eclipse-codegen-plugin-1.6.2+axis2-eclipse-service-plugin-1.6.2"的组合为Eclipse用户提供了一套完整的Web服务开发解决方案,从生成代码到部署服务,全程都在熟悉的开发环境中完成,极大地提升...

    axis2-eclipse-service-plugin-1.7.4.zip

    标题中的"axis2-eclipse-service-plugin-1.7.4.zip"指的是Axis2 Eclipse服务插件的1.7.4版本的归档文件,它是一个专门为Eclipse集成开发环境(IDE)设计的扩展。这个插件允许开发者在Eclipse中方便地创建、部署和...

    axis.jar,axis-saaj-1.4.jar

    总的来说,"axis.jar"和"axis-saaj-1.4.jar"是Web服务开发的关键组件,它们简化了SOAP消息的处理,支持高效的附件传输,并且提供了强大的工具集来创建和使用Web服务。在Java开发环境中,这些库对于构建基于SOAP的Web...

    axis2-eclipse-service-archiver-wizard.zip

    axis2-eclipse-service-archiver-wizard.zip

    axis2-eclipse-service与axis2-eclipse-codegen插件

    目前axis2最高版本是2.0以上的版本,但是eclipse和myeclipse都不支持,无奈只能使用低版本的插件1.6.3;经实验,可以安装成功;...axis2-eclipse-service-plugin-1.6.3.zip axis2-eclipse-codegen-plugin-1.6.3.zip

    axis2-idea-plugin-1.7.9.zip_axis2_axis2-idea-plugin_idea导入axis2_

    plugin-1.7.9.zip_axis2_axis2-idea-plugin_idea导入axis2_"提到了几个关键元素,分别是"axis2"、"idea-plugin"和"idea导入axis2",这暗示了这个压缩包是用于在IntelliJ IDEA这款集成开发环境(IDE)中支持Axis2服务...

    axis2-eclipse-service-archiver-wizard和axis2-eclipse-codegen-wizard

    共四个文件,都是最先版的,希望可以帮助大家。axis2-eclipse-service-archiver-wizard和axis2-eclipse-codegen-wizard和axis2-1.6.1-bin和axis2-1.6.1-war

    axis2-1.8.0apache-cxf-3.4.4.rar

    Apache Axis2是Apache软件基金会开发的一个SOAP(简单对象访问协议)引擎,它是一个完整的Web服务框架。该框架提供了一种高效、灵活的方式来创建和部署Web服务。Axis2的核心功能包括: 1. **SOAP处理**:Axis2能够...

    axis2-eclipse-service-plugin-1.5.4

    标题“axis2-eclipse-service-plugin-1.5.4”指的是Axis2 Eclipse Service Plugin的1.5.4版本。这是一个专门为Eclipse IDE设计的插件,用于帮助开发人员在Eclipse环境中创建、部署和管理基于Apache Axis2的Web服务。...

    axis web service的教程,入门到精通

    1. SOAP监视器:为了查看和调试SOAP消息,可以使用像SOAPUI这样的工具,或者 Axis提供的SOAPMonitor。 2. 异常处理:了解如何处理和报告Web服务调用中的错误和异常是至关重要的,这可以通过自定义异常类和错误处理...

    web service 使用 axis2 框架使用的插件

    - **-axis2-soapmonitor-plugin**:SOAP监控插件,提供实时查看SOAP消息的工具,帮助开发者调试服务。 - **-axis2-mtom-plugin**:MTOM插件,用于优化大数据量传输,通过二进制流而不是XML编码数据,提高传输...

    Axis开发Web Service实例

    ### Axis开发Web Service实例详解 #### 一、概述 在探讨如何使用Apache Axis来开发Web Service之前,我们首先需要了解一些基本概念。 **Web Service**是一种标准的技术框架,用于实现不同平台之间的应用通信。它...

    axis2-idea-plugin-1.7.8

    通过使用Axis2,开发者可以方便地创建服务端和客户端Web服务,同时还能利用其模块化架构来扩展功能。 而"axis2-idea-plugin-1.7.8" 则是将这些功能集成到IntelliJ IDEA中的工具,使得开发者在IDE内部就能享受到对...

    axis2-eclipse-service-archiver-wizard

    标题“axis2-eclipse-service-archiver-wizard”指的是Axis2在Eclipse集成开发环境(IDE)中的一个服务归档向导插件。这个插件是专门为MyEclipse Web服务开发设计的,它简化了创建和管理Axis2 Web服务的过程。 Axis...

    MyEclipse下开发Web Service(Axis)

    ### MyEclipse下开发Web Service(Axis)...最后,对于希望进一步探索Web Service技术栈的开发者,建议深入研究SOAP协议、WSDL规范以及与之相关的安全性、事务处理机制等内容,以提升自身在企业级应用开发领域的竞争力。

Global site tag (gtag.js) - Google Analytics