WebService大讲堂之Axis2(9):编写Axis2模块(Module) - 编程入门网
WebService大讲堂之Axis2(9):编写Axis2模块(Module)时间:2011-08-13 BlogJava 哈佛校训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文件放在 然后将.mar文件放在<Tomcat安装目录>\webapps\axis2\WEB-INF\modules目录中。 先来编写一个WebService类,代码如下: package service; public class MyService { public String getGreeting(String name) { return "您好 " + name; } } 下面我们来编写一个记录请求和响应SOAP消息的Axis2模块。当客户端调用WebService方法时,该 Axis2模块会将请求和响应SOAP消息输出到Tomcat控制台上。 WebService大讲堂之Axis2(9):编写Axis2模块(Module)(2)时间:2011-08-13 BlogJava 哈佛校训第1步:编写LoggingModule类 LoggingModule类实现了Module接口,代码如下: package module; import org.apache.axis2.AxisFault; import org.apache.axis2.context.ConfigurationContext; import org.apache.axis2.description.AxisDescription; import org.apache.axis2.description.AxisModule; import org.apache.axis2.modules.Module; import org.apache.neethi.Assertion; import org.apache.neethi.Policy; public class LoggingModule implements Module { // initialize the module public void init(ConfigurationContext configContext, AxisModule module) throws AxisFault { System.out.println("init"); } public void engageNotify(AxisDescription axisDescription) throws AxisFault { } // shutdown the module public void shutdown(ConfigurationContext configurationContext) throws AxisFault { System.out.println("shutdown"); } public String[] getPolicyNamespaces() { return null; } public void applyPolicy(Policy policy, AxisDescription axisDescription) throws AxisFault { } public boolean canSupportAssertion(Assertion assertion) { return true; } } 在本例中LoggingModule类并没实现实际的功能,但该类必须存在。当Tomcat启动时会装载该Axis2模 块,同时会调用LoggingModule类的init方法,并在Tomcat控制台中输出“init”。 WebService大讲堂之Axis2(9):编写Axis2模块(Module)(3)时间:2011-08-13 BlogJava 哈佛校训第2步:编写LogHandler类 LogHandler类实现了Handler接口,代码如下: package module; import org.apache.axis2.AxisFault; import org.apache.axis2.context.MessageContext; import org.apache.axis2.engine.Handler; import org.apache.axis2.handlers.AbstractHandler; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public cl |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |