- 论坛徽章:
- 0
|
使用 Axis2 实现 Web services 应用
(JDK 必须是 1.4 以上)
理论一下:
Apache Axis2 是Axis的后续版本,是新一代的SOAP引擎。
目前Axis2支持三种模式:In-Only、Robust-In和In-Out。
In-Only消息交换模式只有SOAP请求,而不需要应答;
Robust-In消息交换模式发送SOAP请求,只有在出错的情况下才返回应答;
In-Out消息交换模式总是存在SOAP请求和应答。
实现步骤:
下载 axis2 的开发包 axis2.war ;下载 axis2 doc ,还有参考 OMElement 等 API 的在线文档,用 google 找;
把 axis2.war 放到 Tomcat 的 webapp/ 下,启动或重新启动 Tomcat ;在浏览器中输入 http://localhost:8080/axis2/ ,如果可以见到 axis2 的管理界面,表示部署 axis2 成功;以下是在 MyEclipse 中开发;新建工程 WSDemo ,把 axis2 的 lib 添加到工程中;编写方法 public void display(OMElement in) ,这个方法是没有返回值的,也就是 axis2 实现 In-Only 方式的消息传输,in.getText() 方法可以取出传入参数 in 中的数据,关于 OMElement 更详细的方法,参考文档;编写方法 public OMElement display(OMElement in),这个方法传入一个 OMElement 类型,返回一个 OMElement 类型的数据,OMElement 是一个 XML 模型数据结构,可以用 OMElement 的方法getChildElements() 取出所有 Element ,然后取出数值;要返回一个 OMElement,所以要生成一个 OMElement 类型的结果值;生成步骤如:OMFactory fac = OMAbstractFactory.getOMFactory();OMNamespace omNs = fac.createOMNamespace("http://www.honda.com/", "result");OMElement resp = fac.createOMElement("sumRespone", omNs);resp.setText(String.valueOf(x+y));这时就可以得到了一个 OMElement;服务器端程序结束;配置 /META-INF/services.xml 文件
This is a sample Web Service.
test.ws.WSDemo
RawXMLINOutMessageReceiver"/>
RawXMLINOnlyMessageReceiver"/>
这时,把 JAVA 类和 services.xml 文件打成 aar 包(Eclipse 中 export jar),打包后的目录结构是 /test/ws/WSDemo.class , /META-INF/services.xml ;把这个 aar 包 Copy 到 webapps\axis2\WEB-INF\services 中;(也可以使用管理页面来上传)这时,重启 Tomcat ,进入管理页面,点开 Services ,可以见到自己的 aar 服务了;下面编写客户端代码,访问部署好的 service ;这里,就要了解下消息传递的方式了,有同步和异步两种;private static final String localtc="http://192.168.1.76:8080/axis2/services/wsdemo";
public static void testMultiInOnly(){
try {
Options options = new Options();
options.setTo(targetEPR);
ServiceClient sender = new ServiceClient();
sender.setOptions(options);
OMElement ae = null;
OMElement be = null;
OMElement infoe = null;
OMFactory fac = OMAbstractFactory.getOMFactory();
// OMNamespace指定此SOAP文档名称空间
OMNamespace omNs = fac.createOMNamespace("", "");
infoe=fac.createOMElement("subscribe", omNs);
ae=fac.createOMElement("id", omNs);
be=fac.createOMElement("pass", omNs);
ae.setText("wuhonda");
be.setText("abcd");
infoe.addChild(ae);
infoe.addChild(be);
if(infoe!=null){
sender.sendRobust(infoe);
}
else
System.out.println("------infoe is null");
} catch (Exception axisFault) {
axisFault.printStackTrace();
}
}
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/36976/showart_576028.html |
|