快速业务通道

基于Tomcat5.0和Axis2开发Web Service代码详解 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16

基于Tomcat5.0和Axis2开发Web Service代码详解

时间:2011-06-22 zhangjunhd

1.HelloWorld做了些什么?

HelloWorld功能非常简单,在客户端输入你的姓名,本例中为ZJ。参数传递到服务器端后,经过处理将返回name+"HelloWorld!",本例中为ZJ HelloWorld!

2.服务器端文件HelloWorld.java

HelloWorld.java

package sample; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMFactory; import org.apache.axiom.om.OMNamespace; public class HelloWorld {    //读取client端getSayHelloOMElement()方法传递的参数in。     public OMElement sayHello(OMElement in){      //将in转换为String。         String name=in.getText();         String info=name+"HelloWorld!";      //创建response SOAP包。         OMFactory fac=OMAbstractFactory.getOMFactory();      // OMNamespace指定此SOAP文档名称空间。         OMNamespace omNs=fac.createOMNamespace("http://helloworld.com/","hw");      //创建元素sayHello,并指定其在omNs指代的名称空间中。         OMElement resp=fac.createOMElement("sayHelloResponse",omNs);      //指定元素的文本内容。         resp.setText(info);         return resp;     } }

3.services.xml部署文件

services.xml

<?xml version="1.0" encoding="UTF-8"?> //下面定义服务名 <service name="HelloWorld"> <description>   This is a sample Web Service. </description> // ServiceClass指定Java Class的位置,即实现服务的类。 <parameter name="ServiceClass" locked="false">sample.HelloWorld</parameter> // operation 与Java Class中方法名对应。 <operation name="sayHello"> // messageReceiver看下文注解。   <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/> </operation> </service>

注解:消息交换模式。

目前Axis2支持三种模式:In-Only、Robust-In和In-Out。In-Only消息交换模式只有SOAP请求,而不需要应答;Robust-In消息交换模式发送SOAP请求,只有在出错的情况下才返回应答;In-Out消息交换模式总是存在SOAP请求和应答。本例使用In-Out模式。

基于Tomcat5.0和Axis2开发Web Service代码详解(2)

时间:2011-06-22 zhangjunhd

4.客户端文件TestClient.java

TestClient.java

package example.client; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMFactory; import org.apache.axiom.om.OMNamespace; import org.apache.axis2.addressing.EndpointReference; import org.apache.axis2.client.Options; import org.apache.axis2.client.ServiceClient; public class TestClient {    // targetEPR指定打包的Service(.aar文件)在容器中的物理位置。     private static EndpointReference targetEPR=new EndpointReference      ("http://localhost:8080/axis2/services/HelloWorld");     public static OMElement getSayHelloOMElement(){      //创建request SOAP包。         OMFactory fac=OMAbstractFactory.getOMFactory();     

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号