- 浏览: 64055 次
- 性别:
- 来自: 四川
最新评论
转自:http://space.itpub.net/12921506/viewspace-553399
Axis2可以通过模块(Module)进行扩展。Axis2模块至少需要有两个类,这两个类分别实现了Module和Handler接口。开发和使用一个Axis2模块的步骤如下:
1.编写实现Module接口的类。Axis2模块在进行初始化、销毁等动作时会调用该类中相应的方法)。
2.编写实现Handler接口的类。该类是Axis2模块的业务处理类。
3.编写module.xml文件。该文件放在META-INF目录中,用于配置Axis2模块。
4.在axis2.xml文件中配置Axis2模块。
5.在services.xml文件中配置Axis2模块。每一个Axis2模块都需要使用<module>元素引用才能使用。
6.发布Axis2模块。需要使用jar命令将Axis2模块压缩成.mar包(文件扩展名必须是.mar),然后将.mar文件放在
<Tomcat安装目录>/webapps/axis2/WEB-INF/modules目录中。
先来编写一个WebService类,代码如下:
publicclassMyService
{
publicStringgetGreeting(Stringname)
{
return"您好"+name;
}
}
下面我们来编写一个记录请求和响应SOAP消息的Axis2模块。当客户端调用WebService方法时,该Axis2模块会将请求和响应SOAP消息输出到Tomcat控制台上。
第1步:编写LoggingModule类
LoggingModule类实现了Module接口,代码如下:
importorg.apache.axis2.AxisFault;
importorg.apache.axis2.context.ConfigurationContext;
importorg.apache.axis2.description.AxisDescription;
importorg.apache.axis2.description.AxisModule;
importorg.apache.axis2.modules.Module;
importorg.apache.neethi.Assertion;
importorg.apache.neethi.Policy;
publicclassLoggingModuleimplementsModule
{
//initializethemodule
publicvoidinit(ConfigurationContextconfigContext,AxisModulemodule)
throwsAxisFault
{
System.out.println("init");
}
publicvoidengageNotify(AxisDescriptionaxisDescription)throwsAxisFault
{
}
//shutdownthemodule
publicvoidshutdown(ConfigurationContextconfigurationContext)
throwsAxisFault
{
System.out.println("shutdown");
}
publicString[]getPolicyNamespaces()
{
returnnull;
}
publicvoidapplyPolicy(Policypolicy,AxisDescriptionaxisDescription)
throwsAxisFault
{
}
publicbooleancanSupportAssertion(Assertionassertion)
{
returntrue;
}
}
在本例中LoggingModule类并没实现实际的功能,但该类必须存在。当Tomcat启动时会装载该Axis2模块,同时会调用LoggingModule类的init方法,并在Tomcat控制台中输出“init”。
第2步:编写LogHandler类
LogHandler类实现了Handler接口,代码如下:
importorg.apache.axis2.AxisFault;
importorg.apache.axis2.context.MessageContext;
importorg.apache.axis2.engine.Handler;
importorg.apache.axis2.handlers.AbstractHandler;
importorg.apache.commons.logging.Log;
importorg.apache.commons.logging.LogFactory;
publicclassLogHandlerextendsAbstractHandlerimplementsHandler
{
privatestaticfinalLoglog=LogFactory.getLog(LogHandler.class);
privateStringname;
publicStringgetName()
{
returnname;
}
publicInvocationResponseinvoke(MessageContextmsgContext)
throwsAxisFault
{
//向Tomcat控制台输出请求和响应SOAP消息
log.info(msgContext.getEnvelope().toString());
returnInvocationResponse.CONTINUE;
}
publicvoidrevoke(MessageContextmsgContext)
{
log.info(msgContext.getEnvelope().toString());
}
publicvoidsetName(Stringname)
{
this.name=name;
}
}
LogHandler类的核心方法是invoke,当使用该Axis2模块的WebService的方法被调用时,LogHandler类的invoke方法被调用。
第3步:编写module.xml文件
在META-INF目录中建立一个module.xml文件,内容如下:
<InFlow>
<handlername="InFlowLogHandler"class="module.LogHandler">
<orderphase="loggingPhase"/>
</handler>
</InFlow>
<OutFlow>
<handlername="OutFlowLogHandler"class="module.LogHandler">
<orderphase="loggingPhase"/>
</handler>
</OutFlow>
<OutFaultFlow>
<handlername="FaultOutFlowLogHandler"class="module.LogHandler">
<orderphase="loggingPhase"/>
</handler>
</OutFaultFlow>
<InFaultFlow>
<handlername="FaultInFlowLogHandler"class="module.LogHandler">
<orderphase="loggingPhase"/>
</handler>
</InFaultFlow>
</module>
第4步:在axis2.xml文件中配置Axis2模块
打开axis2.xml文件,分别在如下四个<phaseOrder>元素中加入<phase name="loggingPhase"/>:
<phasename="soapmonitorPhase"/>
<phasename="loggingPhase"/>
</phaseOrder>
<phaseOrdertype="OutFlow">
<phasename="Security"/>
<phasename="loggingPhase"/>
</phaseOrder>
<phaseOrdertype="InFaultFlow">
<phasename="soapmonitorPhase"/>
<phasename="loggingPhase"/>
</phaseOrder>
<phaseOrdertype="OutFaultFlow">
<phasename="Security"/>
<phasename="loggingPhase"/>
</phaseOrder>
第5步:在services.xml文件中引用logging模块
services.xml文件的内容如下:
<description>
使用logging模块
</description>
<!--引用logging模块-->
<moduleref="logging"/>
<parametername="ServiceClass">
service.MyService
</parameter>
<messageReceivers>
<messageReceivermep="http://www.w3.org/2004/08/wsdl/in-out"
class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</messageReceivers>
</service>
第6步:发布logging模块
到现在为止,我们应用可以建立两个发行包:logging.mar和service.aar。其中logging.mar文件是Axis2模块的发行包,该包的目录结构如下:
logging.mar
module/LoggingModule.class
module/LogHandler.class
META-INF/module.xml
service.aar文件是本例编写的WebService发行包,该包的目录结构如下:
service.aar
service/MyService.class
META-INF/services.xml
将logging.mar文件放在<Tomcat安装目录>/webapps/axis2/WEB-INF/modules目录中,将service.aar文件放在<Tomcat安装目录>/webapps/axis2/WEB-INF/services目录中。要注意的是,如果modules目录中包含了modules.list文件,Axis2会只装载在该文件中引用的Axis2模块,因此,必须在该文件中引用logging模块,该文件的内容如下:
addressing-1.4.1.mar
soapmonitor-1.4.1.mar
ping-1.4.1.mar
mex-1.4.1.mar
axis2-scripting-1.4.1.mar
logging.mar
如果modules目录中不包含modules.list文件,则Axis2会装载modules文件中的所有Axis2模块。
现在启动Tomcat,使用如下的C#代码调用MyService的getGreeting方法则会在Tomcat控制台中输出相应的请求和响应SOAP消息。
async.myServicemy=newWSC.asyn.myService();
MessageBox.Show(my.getGreeting("中国"));
MessageBox.Show("完成调用");
在执行上面的代码后,在Tomcat控制台中输出的信息如下图所示。
发表评论
-
struts2 中获取 web资源的方式
2016-01-08 17:02 539在struts2中获取 web资源的方式大致可分为获取扩展 ... -
sql server、db2、oracle 存储过程动态sql语句示例
2015-01-31 19:00 1845Oracle CREATE OR REPLACE PRO ... -
ie9 中出现不明的异常(参数是必选项 (Argument not optional)、尚未实现)等
2015-01-27 23:57 1315<script type="text/jav ... -
SAXParseException: The content of element type "configuration" must match
2014-09-15 23:57 1975在mybatis的配置文件中新增加<databaseI ... -
java.lang.ClassNotFoundException: Cannot find class: DB_VENDOR
2014-09-15 23:45 2018在mybatis 中使用databaseIdProvide ... -
spring mvc3 + fastjson 转换 REST 参数以及输出
2014-03-27 00:16 4264spring 3可以支持Rest风格参数,其内置了jack ... -
eclipse中编辑log4j 的xml配置文件时,自动提示
2014-03-27 00:05 899方法1. 配置log4j.dtd文件: Windows - ... -
java json 转换之 Jackson 框架
2013-08-01 21:50 1179转自:http://www.cnblogs.com/hooj ... -
eclipse/myeclise 自定义注释中的变量名称
2013-07-01 23:18 981eclipse/myeclipse中自带了 ... -
Eclipse Class Decompiler——Java反编译插件
2012-11-08 22:41 1246Eclipse Class Decompiler,整 ... -
struts+spring+hibernate整合问题解决方法 陆续更新中....
2009-01-01 10:33 889在整合ssh过程中出现的问题和解决方法: 一、 严重: Ser ... -
DWR通过Annotation与spring整合
2009-01-21 22:05 672DWR 2.0 增加了一个很有趣的新特性,Annotat ... -
div嵌套页面 div加载页面 (其中获取目标页面的内容是用dwr框架连接java程序做的)
2009-03-15 16:58 664前段时间因为有需要,要在div中加载一个页面。但是以前没做过, ... -
tapestry autocomplete 更改样式及定位
2009-07-09 19:02 727版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文 ... -
Java中的main()方法详解
2009-07-12 16:23 657源文作者:leizhimin 源文链接:http:/ ... -
tapestry5 集成 spring 的事务管理
2009-07-22 15:43 604说明:使用的是tapestry5.1.0.5 和spring ... -
tapestry5 布局 参数的处理
2009-07-23 17:24 449<?xml version="1.0" ... -
tapestry不支持 等html特殊符号的解决方法
2009-07-23 17:34 564在使用tapestry时,偶然发现使用 &a ... -
WebService大讲堂之Axis2(1):用POJO实现0配置的WebService
2009-07-28 15:01 438转自:http://space.itpub.net ... -
WebService大讲堂之Axis2(2):复合类型数据的传递
2009-07-28 15:25 529转自:http://space.itpub.net/12921 ...
相关推荐
WebService大讲堂之Axis2 WebService大讲堂之Axis2 WebService大讲堂之Axis2 WebService大讲堂之Axis2 WebService大讲堂之Axis2 WebService大讲堂之Axis2
### WebService大讲堂之Axis2:深入了解零配置的WebService开发 #### 一、Axis2简介及下载安装 Axis2是Apache软件基金会提供的一款高性能、轻量级的WebService引擎,它是在Axis1.x的基础上重新设计的产物,不仅...
1. **以多种方式编写和发布WebService**:Axis2支持使用POJO(Plain Old Java Object)来快速构建无配置的WebService,这极大地简化了开发流程。 2. **JAX-RPC与JAX-WS**:了解这两种不同的Web服务编程模型,JAX-...
【WebService大讲堂之Axis2及其它Web Service资料】 在IT行业中,Web Service是一种通过互联网进行应用程序间交互的标准技术。它允许不同的系统之间共享数据和服务,不受编程语言、操作系统或硬件平台的限制。本...
webservice大讲堂之axis2.rar webservice大讲堂之axis2.rar webservice大讲堂之axis2.rar webservice大讲堂之axis2.rar webservice大讲堂之axis2.rar webservice大讲堂之axis2.rar
详细webservice大讲堂axis2
Axis2模块化的设计还允许开发者编写自定义模块,以增强或修改引擎功能。最后,Axis2提供了soapmonitor模块,用于监视SOAP请求和响应消息,帮助开发者调试和监控服务状态。 整体来看,Axis2作为新一代WebService引擎...
### WebService大讲堂之Axis2(10):使用soapmonitor模块监视SOAP请求与响应消息 #### 一、概述 在《WebService大讲堂之Axis2(10):使用soapmonitor模块监视SOAP请求与响应消息》这篇文章中,作者介绍了如何...
WebService 大讲堂之 Axis2(4):二进制文件传输 在本文中,我们将讨论如何使用 Axis2 实现二进制文件传输。Axis2 是一个基于 Java 的WebService框架,它提供了许多强大的功能来实现WebService的开发和部署。在...
3. **WebService大讲堂之Axis2(9):编写Axis2模块(Module)** 在这个部分,你将学习如何为Axis2编写自定义模块,扩展其功能以满足特定需求。模块可以用来添加安全特性、消息转换或实现特定的业务逻辑。 4. **...
9. **编写Axis2模块**:“WebService大讲堂之Axis2(9):编写Axis2模块(Module) .doc”可能涵盖了自定义Axis2模块的创建,这些模块可以扩展Axis2的功能或提供特定的处理逻辑。 10. **使用services.xml文件发布...
- **模块化**:Axis2的模块化设计允许开发者按需加载特定功能,如安全、事务处理等,提高了灵活性。 - **高效的处理**:通过消息引擎和线程池,Axis2能高效地处理大量并发请求。 - **多种绑定支持**:支持SOAP 1.1和...
在 Axis2 中,我们需要将服务类 `ComplexTypeService` 注册到 Axis2 服务容器中,这通常通过编写服务描述文件(如 `.aar` 文件)来实现。服务部署后,可以通过 SOAP 请求调用这些方法。 四、客户端调用服务 在...