Axis2简单入门

1.到Apache官网下载Axis2

 

给你地址:http://axis.apache.org/axis2/java/core/download.cgi

 

2.设置环境

 

把下载好的Axis2放到一个你喜欢的位置,我放在了

F:\Program Files\axis2-1.5.5

 

然后设置环境变量:

AXIS2_HOME=F:\Program Files\axis2-1.5.5
在PATH 最后添加 ;%AXIS2_HOME%\bin

 

3.简单测试

 

%AXIS2_HOME%\bin\axis2server.bat (Windows)

执行这个脚本,会看到:

Using JAVA_HOME    C:\Program Files\Java\jdk1.7.0
Using AXIS2_HOME   F:\Program Files\axis2-1.5.5
[INFO] [SimpleAxisServer] Starting
[INFO] [SimpleAxisServer] Using the Axis2 RepositoryF:\Program Files\axis2-1.5.5\repository
[SimpleAxisServer] Using the Axis2 RepositoryF:\Program Files\axis2-1.5.5\repository
[SimpleAxisServer] Using the Axis2 Configuration FileF:\Program Files\axis2-1.5.5\conf\axis2.xml
[INFO] Clustering has been disabled
[INFO] Deploying module: addressing-1.5.5 - file:/F:/Program Files/axis2-1.5.5/repository/modules/ad
dressing-1.5.5.mar
[INFO] Deploying module: metadataExchange-1.5.5 - file:/F:/Program Files/axis2-1.5.5/repository/modu
les/mex-1.5.5.mar
[INFO] Deploying module: mtompolicy-1.5.5 - file:/F:/Program Files/axis2-1.5.5/repository/modules/mt
ompolicy-1.5.5.mar
[INFO] Deploying module: ping-1.5.5 - file:/F:/Program Files/axis2-1.5.5/repository/modules/ping-1.5
.5.mar
[INFO] Deploying module: script-1.5.5 - file:/F:/Program Files/axis2-1.5.5/repository/modules/script
ing-1.5.5.mar
[INFO] Deploying module: soapmonitor-1.5.5 - file:/F:/Program Files/axis2-1.5.5/repository/modules/s
oapmonitor-1.5.5.mar
[INFO] Deploying Web service: version.aar - file:/F:/Program Files/axis2-1.5.5/repository/services/v
ersion.aar
[INFO] [SimpleAxisServer] Started
[SimpleAxisServer] Started
[INFO] Listening on port 8080

 

 

在浏览器里面输入:http://localhost:8080/axis2/services/

 

如果看到:

 

Deployed servicesVersion
Available operations

  • getVersion

 

这说明Axis2没问题

 

4.编译Axis2项目

 

首先,你应该下载了 Ant ,并且版本要大于 1.6.5 ,设置好Ant环境变量 ,然后再进行下面的操作

 

下面进入到 $AXIS_HOME/webapp 下

F:\Program Files\axis2-1.5.5\webapp>ant -version
Apache Ant(TM) version 1.8.2 compiled on December 20 2010
F:\Program Files\axis2-1.5.5\webapp>ant create.war
Buildfile: F:\Program Files\axis2-1.5.5\webapp\build.xml
init:
    [mkdir] Created dir: F:\Program Files\axis2-1.5.5\dist
    [mkdir] Created dir: F:\Program Files\axis2-1.5.5\dist\temp
     [copy] Copying 59 files to F:\Program Files\axis2-1.5.5\dist\temp
prepare.repo:
     [copy] Copying 9 files to F:\Program Files\axis2-1.5.5\dist\temp\WEB-INF
    [mkdir] Created dir: F:\Program Files\axis2-1.5.5\dist\temp\WEB-INF\conf
     [copy] Copying 1 file to F:\Program Files\axis2-1.5.5\dist\temp\WEB-INF\conf
create.war:
      [war] Building war: F:\Program Files\axis2-1.5.5\dist\axis2.war
   [delete] Deleting directory F:\Program Files\axis2-1.5.5\dist\temp
BUILD SUCCESSFUL
Total time: 4 seconds
F:\Program Files\axis2-1.5.5\webapp>

 
这样,便编译好了Axis2的项目。

 

5.测试Axis2项目

 

准备使用 Tomcat容器,所以,没有的先下载。

 

刚刚build好的Axis2项目应该在 AXIS2_HOME/dist 下面

 

把这个 axis2.war  剪切(或者复制)到tomcat下的webapp目录下,启动Tomcat(启动前把刚刚打开的Axis服务关掉,因为都用了8080端口)。

 

 

再输入下面的地址:

 

 http://localhost:8080/axis2/axis2-web/index.jsp

 

 如果看到这样的结果:

 

Welcome!

 

Welcome to the new generation of Axis. If you can see this page you have successfully deployed the Axis2 Web Application. However, to ensure that Axis2 is properly working, we encourage you to click on the validate link.

  • Services
    View the list of all the available services deployed in this server.
  • Validate
    Check the system to see whether all the required libraries are in place and view the system information.
  • Administration
    Console for administering this Axis2 installation.
<!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file ~ distributed with this work for additional information ~ regarding copyright ownership. The ASF licenses this file ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. -->

 

说明成功了。

 

点击 Services 可查看当前存在的服务。

 

 

6.编写测试服务

 

 使用Eclipse新建一个Java项目

 

导入所需jar包:当然就是 %AXIS2_HOME%\lib  下面的所有jar包(为了方便)。

 

新建包:

 

mm.test.webservices.axis2userguide

 

在这个包下面

创建 SampleService.java

 

内容如下:

 

package mm.test.webservices.axis2userguide;

import javax.xml.stream.XMLStreamException;
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 SampleService {

	public OMElement sayHello(OMElement element) throws XMLStreamException {
		element.build();
		element.detach();

		String rootName = element.getLocalName();
		System.out.println("Reading " + rootName + " element");

		OMElement childElement = element.getFirstElement();
		String personToGreet = childElement.getText();

		OMFactory fac = OMAbstractFactory.getOMFactory();
		OMNamespace omNs = fac.createOMNamespace(
				"http://example1.org/example1", "example1");
		OMElement method = fac.createOMElement("sayHelloResponse", omNs);
		OMElement value = fac.createOMElement("greeting", omNs);
		value.addChild(fac.createOMText(value, "Hello, " + personToGreet));
		method.addChild(value);

		return method;
	}

	@SuppressWarnings("unused")
	private void ping() {
	}

}

 

然后再到另一个地方(随意,当然,当前项目下也可以)创建一个文件夹:

 

 J:\SampleService

 

 这是我的。

 

然后,把刚才编译好的 mm.test.webservices.axis2userguide.SampleService.class

连带文件夹拷到这个目录下

 

再在当前目录下新建:

 

META-INF

 

在META-INF目录下新建文件:services.xml,内容如下:

 

<service name="UserGuideSampleService">
    <description>
        This is a sample service created in the Axis2 User's Guide
    </description>

    <parameter name="ServiceClass">
    	mm.test.webservices.axis2userguide.SampleService
		</parameter>

    <operation name="sayHello">
        <messageReceiver class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
    </operation>
    <operation name="ping">
        <messageReceiver class="org.apache.axis2.receivers.RawXMLINOnlyMessageReceiver"/>
    </operation>
</service>

 

还是在J:\SampleService文件夹下,打开cmd窗口,输入:

J:\SampleService>jar cvf SampleService.aar ./*
标明清单(manifest)
忽略项 META-INF/
增加:META-INF/services.xml(读入= 549) (写出= 243)(压缩了 55%)
增加:mm/(读入= 0) (写出= 0)(存储了 0%)
增加:mm/test/(读入= 0) (写出= 0)(存储了 0%)
增加:mm/test/webservices/(读入= 0) (写出= 0)(存储了 0%)
增加:mm/test/webservices/axis2userguide/(读入= 0) (写出= 0)(存储了 0%)
增加:mm/test/webservices/axis2userguide/SampleService.class(读入= 2232) (写出= 1074)(压缩了 51%)
J:\SampleService>

 

这样,就会在 J:\SampleService 目录下生成一个 SampleService.aar 包。

 

7.部署测试服务

 

第1种:使用管理控制台部署

打开管理控制台:http://localhost:8080/axis2/axis2-admin/

输入用户名密码:admin/axis2

选择第一项 : Upload Service

找到刚才生成的 SampleService.aar 直接部署吧(点击 浏览 --> upload)



第2种:手工拷贝到对应地址

这个没得说,就把 SampleService.aar 直接拷贝到

%TOMCAT_HOME%\webapps\axis2\WEB-INF\services

这个目录下面就可以了。

8.查看是否部署成功


http://localhost:8080/axis2/services/listServices

 

 打开后,可以看到:

UserGuideSampleService

多出了这么一个服务,说明部署成功。

 

9.编写客户端进行测试

 

在刚刚新建的java项目下:

在 mm.test.webservices.axis2userguide 包下

新建 : SampleClient.java  内容如下:

package mm.test.webservices.axis2userguide;

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.Constants;
import org.apache.axis2.client.ServiceClient;

public class SampleClient {

	private static EndpointReference targetEPR = new EndpointReference(
			"http://localhost:8080/axis2/services/UserGuideSampleService");

	public static OMElement greetUserPayload(String personToGreet) {
		OMFactory fac = OMAbstractFactory.getOMFactory();
		OMNamespace omNs = fac.createOMNamespace(
				"http://example1.org/example1", "example1");
		OMElement method = fac.createOMElement("sayHello", omNs);
		OMElement value = fac.createOMElement("personToGreet", omNs);
		value.addChild(fac.createOMText(value, personToGreet));
		method.addChild(value);
		return method;
	}

	public static void main(String[] args) {
		try {
			OMElement payload = SampleClient.greetUserPayload("John");
			Options options = new Options();
			options.setTo(targetEPR);

			options.setTransportInProtocol(Constants.TRANSPORT_HTTP);

			ServiceClient sender = new ServiceClient();
			sender.setOptions(options);
			OMElement result = sender.sendReceive(payload);

			String response = result.getFirstElement().getText();
			System.out.println(response);

		} catch (Exception e) { // (XMLStreamException e) {
			System.out.println(e.toString());
		}
	}

}

 

右键运行下,如果发现控制台输出:

 

Hello, John

 说明:调用服务成功。 

 

 

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Axis2 是一个流行的开源的 Web 服务框架,它提供了一个简单而强大的方式来构建和部署 Web 服务。由于其灵活性和功能丰富的特性,许多开发者都希望学习并掌握 Axis2 的使用。为了满足这一需求,许多教育平台和个人博客都提供了 Axis2 的视频教程。 Axis2 视频教程通常包括以下内容:介绍 Axis2 的基本概念和架构,演示如何安装和配置 Axis2 环境,创建和部署简单的 Web 服务,以及如何利用 Axis2 的高级特性来实现复杂的功能。通过视频教程,观众可以清晰地看到操作过程,更容易理解和掌握 Axis2 的使用方法。 值得注意的是,由于 Axis2 是一个功能强大且复杂的框架,因此视频教程通常会以模块化的方式展示,每个视频都会重点介绍一个特定的主题或功能。这样可以使学习者更有针对性地选择他们感兴趣的内容进行学习,并且便于反复观看和复习。 除了基本的概念和操作指南,一些视频教程还会提供实际的案例分析和实战演练,帮助学习者将理论知识应用到实际项目中。这种实践性的学习方式更有利于学习者的掌握和运用。 总之,Axis2 视频教程为学习者提供了一个高效、直观的学习途径,帮助他们快速入门并掌握 Axis2 的使用技巧。希望学习者能够通过视频教程的学习,掌握 Axis2 的核心概念和高级功能,为自己的技术能力提升打下坚实的基础。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值