`

基于Tomcat5.0和Axis2开发Web Service应用实例

阅读更多
基于Tomcat5.0和Axis2开发Web Service应用实例

AXIS 2009-03-08 23:50:59 阅读6 评论0   字号:大中小 订阅
来源:http://zhangjunhd.blog.51cto.com/113473/23690

本文将介绍如何使用Tomcat5.0和Apache Axis2开发、部署及测试一个简单的Web Service应用。

author: ZJ 07-3-12

Blog: http://zhangjunhd.blog.51cto.com/

1.工作环境

Eclipse 3.1.2+Lomboz+jdk1.5+ apache-tomcat-5.0.18+AXIS2:1.0(war版本和bin版本)

在http://ws.apache.org/axis2/download/1_0/download.cgi页面下,下载AXIS2的Binary Distribution url: http://apache.justdn.org/ws/axis2/1_0/axis2-std-1.0-bin.zip和war Distribution url: http://apache.justdn.org/ws/axis2/1_0/axis2-1.0-docs.zip。把这两个文件解压,比如解压缩的后得目录为C:\axis2-std-1.0-bin和C:\axis2.war。

在Eclipse下通过菜单window—preferences…--Java—Build Path—User Libraries 新建一个user library,比如名字就叫axis2把C:\axis2-std-1.0-bin\lib下的所有jar文件包含进来。把axis2.war拷贝到%TOMCAT-HOME%/webapps下面。

2.检验安装

在Eclipse下启动Tomcat,在地址栏内输入http://localhost:8080/axis2/。



点击Validate,将到达 Axis2 Happiness Page。



3.WebService中的HelloWorld

1)新建一个动态web工程,取名ZZaxis,右键点击项目名,选择Properties-Java Build Path-Add Library-User Library-axis2。

2)新建package sample,建立HelloWorld.java,代码如下。

HelloWorld.java

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 {

public OMElement sayHello(OMElement in){

String name=in.getText();

String info=name+"HelloWorld!";

OMFactory fac=OMAbstractFactory.getOMFactory();

OMNamespace omNs=fac.createOMNamespace("http://helloworld.com/","hw");

OMElement resp=fac.createOMElement("sayHelloResponse",omNs);

resp.setText(info);

return resp;

}

}

3)在WebContent\META-INF\建立services.xml,代码如下。

services.xml

<?xml version="1.0" encoding="UTF-8"?>

<service name="HelloWorld">

<description>

This is a sample Web Service.

</description>

<parameter name="ServiceClass" locked="false">sample.HelloWorld</parameter>

<operation name="sayHello">

<messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>

</operation>

</service>

4)将目录sample和目录META-INF组织如下(新建目录example)。

+-example

|-------- +-sample

|------- HelloWorld.class

|---------+-META-INF

|------- services.xml

5)打包生成aar文件。

在命令符环境下,将当前目录转到example。

jar cvf HelloWorld.aar . //注意最后一个点,在当前目录下生成HelloWorld.aar。



6)在Eclipse中启动Tomcat,在地址栏下键入http://localhost:8080/axis2/。选择Administration,输入用户名admin,密码axis2。选择左侧工具栏Tools- Upload Service,上传之前打包的HelloWorld.aar。该文件将在<CATALINA_HOME>/webapps/axis2\WEB-INF\services目录下。

7)编写客户端检验代码。新建Java Project,取名为ZZaxisClient。右键点击项目名,选择Properties-Java Build Path-Add Library-User Library-axis2。

8)新建package example.client。建立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 {

private static EndpointReference targetEPR=new EndpointReference

("http://localhost:8080/axis2/services/HelloWorld");

public static OMElement getSayHelloOMElement(){

OMFactory fac=OMAbstractFactory.getOMFactory();

OMNamespace omNs=fac.createOMNamespace("http://helloworld.com/","hw");

OMElement method=fac.createOMElement("sayHello",omNs);

method.setText("ZJ");

return method;

}

public static void main(String[] args){

try{

Options options=new Options();

options.setTo(targetEPR);

ServiceClient sender=new ServiceClient();

sender.setOptions(options);

OMElement sayHello=TestClient.getSayHelloOMElement();

OMElement result=sender.sendReceive(sayHello);

System.out.println(result);

}

catch(Exception axisFault){

axisFault.printStackTrace();

}

}

}

9)测试,run TestClient.java as Java Application。结果:

<hw:sayHelloResponse xmlns:hw="http://helloworld.com/"

xmlns:tns="http://ws.apache.org/axis2">

ZJHelloWorld!

</hw:sayHelloResponse>

4.HelloWorld做了些什么?

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

5.服务器端文件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;

}

}

6.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模式。

7.客户端文件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();

// OMNamespace指定此SOAP文档名称空间。

OMNamespace omNs=fac.createOMNamespace("http://helloworld.com/","hw");

//创建元素sayHello,并指定其在omNs指代的名称空间中。

OMElement method=fac.createOMElement("sayHello",omNs);

//指定元素的文本内容。

method.setText("ZJ");

return method;

}

public static void main(String[] args){

try{

Options options=new Options();

options.setTo(targetEPR);

ServiceClient sender=new ServiceClient();

sender.setOptions(options);

OMElement sayHello=TestClient.getSayHelloOMElement();

//发出request SOAP,

//同时将得到的远端由sayHello方法返回的信息保存到result。

//通过services.xml能准确找到sayHello方法所在的文件。

OMElement result=sender.sendReceive(sayHello);

}

catch(Exception axisFault){

axisFault.printStackTrace();

}

}

}

8.Axis2简介

Apache Axis2 是Axis的后续版本,是新一代的SOAP引擎。Axis2的主要特点有:

1)采用名为 AXIOM(AXIs Object Model)的新核心 XML 处理模型,利用新的XML解析器提供的灵活性按需构造对象模型。

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

3)提供阻塞和非阻塞客户端 API。

4)支持内置的 Web服务寻址 (WS-Addressing) 。

5)灵活的数据绑定,可以选择直接使用 AXIOM,使用与原来的 Axis 相似的简单数据绑定方法,或使用 XMLBeans、JiBX 或 JAXB 2.0 等专用数据绑定框架。

6)新的部署模型,支持热部署。

7)支持HTTP,SMTP,JMS,TCP传输协议。

8)支持REST (Representational State Transfer)。

9.Axis2 支持的规范包括:

-SOAP 1.1 and 1.2

-Message Transmission Optimization Mechanism (MTOM), XML Optimized Packaging (XOP) and SOAP with Attachments

-WSDL 1.1, including both SOAP and HTTP bindings

-WS-Addressing (submission and final)

-WS-Policy

-SAAJ 1.1

有关Axis2
分享到:
评论

相关推荐

    基于Tomcat5.0和Axis2开发Web Service应用实例(1)附带实例

    标题 "基于Tomcat5.0和Axis2开发Web Service应用实例(1)附带实例" 指向的是一个关于如何使用Apache Tomcat 5.0版本和Axis2框架创建Web服务的应用教程。Apache Tomcat是一款流行的开源Java Servlet容器,而Axis2则是...

    Axis+MyEclipse6.0+Tomcat5.0开发Web Service实例总结

    Axis+MyEclipse6.0+Tomcat5.0开发Web Service实例总结

    Axis开发Web Service实例

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

    Axis开发Web Service的实例

    ### Axis开发Web Service的实例详解 #### 一、概述 在现代软件开发中,Web服务是一种重要的技术,它允许不同应用程序之间通过网络进行通信。Apache Axis是实现Web服务的一个流行框架,它支持SOAP协议,并提供了...

    MyEclipse下开发Web Service(Axis)

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

    axis2-webservice新手教程实例

    本教程将引导初学者通过实例了解如何使用 Axis2 开发 Web 服务。 1. **环境搭建** 首先,你需要准备以下工具: - JDK 1.6 或更高版本 - Tomcat 5.0 或更高版本 - MyEclipse 5.0 或其他支持的 IDE - 下载 Axis2...

    Axis开发WebService实例.pdf

    ### Axis开发WebService实例知识点解析 #### 一、Axis概述与安装配置 - **Apache Axis简介**:Apache Axis是Apache组织提供的一个开源项目,用于在Java环境中实现WebService技术规范。它支持SOAP协议,并提供了...

    webservice实例

    本实例重点介绍了使用Axis、wsdd、Eclipse 3.0、MyEclipse 4.1、JDK 1.5和Tomcat 5.0来开发和部署Web服务的流程。 【Axis】 Axis是Apache软件基金会开发的一个开源Web服务框架,用于简化SOAP(简单对象访问协议)和...

    《Axis实例与分析详解》

    ### Axis实例与分析详解 #### 一、Axis简介与安装 **Axis** 是一款由Apache组织维护的开源WebService运行引擎,支持SOAP协议。它源于Apache的另一项目——Apache SOAP,并在此基础上进行了大量的改进和发展。目前...

    AXIS学习笔记.doc

    2. **软件环境**:AXIS学习需要的软件包括AXIS版本1.2、Tomcat 5.0服务器以及JDK 5.0。AXIS是Apache基金会提供的一个工具,用于生成和调用SOAP Web服务。 3. **环境变量配置**:为了使AXIS正常工作,需要设置几个...

    AXIS学习笔记

    AXIS学习笔记主要涵盖如何使用AXIS框架来开发SOAP Web服务和客户端程序。SOAP(简单对象访问协议)是一种用于交换结构化信息的标准协议,常用于Web服务交互,尤其是在企业内部系统如ERP的集成中。 首先,你需要搭建...

    Java开发WebService实例

    在IT领域,尤其是企业级应用开发中,WebService作为一种标准化的、跨平台的服务交互方式,被广泛应用于系统间的数据交换与服务调用。本文将基于给定的“Java开发WebService实例”内容,深入解析如何在Tomcat中间件...

Global site tag (gtag.js) - Google Analytics