- 浏览: 180236 次
- 性别:
- 来自: 厦门
文章分类
- 全部博客 (186)
- Ant (11)
- Axis2 (15)
- Car (9)
- Eclipse (1)
- Java (19)
- Java-EM (4)
- Javascript (11)
- Jsp (1)
- Hibernate (9)
- Mysql (1)
- Ms-Dos (5)
- Music (0)
- Oracle (3)
- Postgresql (0)
- Photoshop (1)
- Spring (17)
- Struts (8)
- Selenium (5)
- Ubuntu (13)
- News (17)
- Others (7)
- SSH (11)
- 算法 (5)
- FreeMarker (4)
- Tomcat (2)
- Linux (5)
最新评论
关键字: webservice
webservice开发总结
首先建一个HelloWorld的web工程
把axis2相关包放到工程lib里,
为保证正确,新手建议引用所有axis2的jar包.
===================================
1.开发service端
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://www.helloworld.com/","");
//创建元素sayHello,并指定其在omNs指代的名称空间中
OMElement resp=fac.createOMElement("sayHelloResponse",omNs);
//指定元素的文本内容
resp.setText(info);
return resp;
}
}
=====================================
2.service.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>
======================================
3.webservice客户端开发
package example.client;
import java.util.Iterator;
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(){
//创建request SOAP包
OMFactory fac = OMAbstractFactory.getOMFactory();
// OMNamespace指定此SOAP文档名称空间
OMNamespace omNs = fac.createOMNamespace("aa","");
//创建元素sayHello,并指定其在omNs指代的名称空间中
OMElement method = fac.createOMElement("sayHello",omNs);
//指定元素的文本内容
method.setText("Sailing ");
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);
//OMElement tempOm;
System.out.println(result.equals(null));
System.out.println(result.getText());
System.out.println(result.getLocalName().intern());
// for (Iterator it = result.getFirstElement().getChildElements(); it.hasNext();){
// tempOm = (OMElement) it.next();
// System.out.println(tempOm.getLocalName());
// }
}
catch(Exception axisFault){
axisFault.printStackTrace();
}
}
}
============================================
4.服务端工程部署
服务端工程部署有两种方式:arr包和非aar包
服务端工程部署在 %TOMCAT_HOME%/webapps\axis2\WEB-INF\services
1)非aar包方式:
也就是webservice工程模式,其工程结构如下:
%TOMCAT_HOME%/webapps\axis2\WEB-INF\services\HelloWorld\sample\HelloWorld.class
%TOMCAT_HOME%/webapps\axis2\WEB-INF\services\HelloWorld\META-INF\MANIFEST.MF
%TOMCAT_HOME%/webapps\axis2\WEB-INF\services\HelloWorld\META-INF\services.xml
2)aar包方式:
HelloWorld文件夹打包成HelloWorld.aar放到%TOMCAT_HOME%/webapps\axis2\WEB-INF\services目录下
=============================================
5.启动Tomcat
%TOMCAT_HOME%/bin/startup.bat
=============================================
6.测试客户端
运行TestClient.java main()
如果显示:Sailing HelloWorld!,那就说明测试成功.
首先建一个HelloWorld的web工程
把axis2相关包放到工程lib里,
为保证正确,新手建议引用所有axis2的jar包.
===================================
1.开发service端
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://www.helloworld.com/","");
//创建元素sayHello,并指定其在omNs指代的名称空间中
OMElement resp=fac.createOMElement("sayHelloResponse",omNs);
//指定元素的文本内容
resp.setText(info);
return resp;
}
}
=====================================
2.service.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>
======================================
3.webservice客户端开发
package example.client;
import java.util.Iterator;
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(){
//创建request SOAP包
OMFactory fac = OMAbstractFactory.getOMFactory();
// OMNamespace指定此SOAP文档名称空间
OMNamespace omNs = fac.createOMNamespace("aa","");
//创建元素sayHello,并指定其在omNs指代的名称空间中
OMElement method = fac.createOMElement("sayHello",omNs);
//指定元素的文本内容
method.setText("Sailing ");
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);
//OMElement tempOm;
System.out.println(result.equals(null));
System.out.println(result.getText());
System.out.println(result.getLocalName().intern());
// for (Iterator it = result.getFirstElement().getChildElements(); it.hasNext();){
// tempOm = (OMElement) it.next();
// System.out.println(tempOm.getLocalName());
// }
}
catch(Exception axisFault){
axisFault.printStackTrace();
}
}
}
============================================
4.服务端工程部署
服务端工程部署有两种方式:arr包和非aar包
服务端工程部署在 %TOMCAT_HOME%/webapps\axis2\WEB-INF\services
1)非aar包方式:
也就是webservice工程模式,其工程结构如下:
%TOMCAT_HOME%/webapps\axis2\WEB-INF\services\HelloWorld\sample\HelloWorld.class
%TOMCAT_HOME%/webapps\axis2\WEB-INF\services\HelloWorld\META-INF\MANIFEST.MF
%TOMCAT_HOME%/webapps\axis2\WEB-INF\services\HelloWorld\META-INF\services.xml
2)aar包方式:
HelloWorld文件夹打包成HelloWorld.aar放到%TOMCAT_HOME%/webapps\axis2\WEB-INF\services目录下
=============================================
5.启动Tomcat
%TOMCAT_HOME%/bin/startup.bat
=============================================
6.测试客户端
运行TestClient.java main()
如果显示:Sailing HelloWorld!,那就说明测试成功.
发表评论
-
Spring Web Service 学习之Hello World篇2
2008-11-03 15:32 10836, 修改配置文件spring-ws- ... -
基于Axis2开发WebService代码详解
2008-11-04 09:34 922基于Axis2开发WebService代码详解 关键字: we ... -
基于Tomcat5.0和Axis2开发Web Service应用实例
2008-11-04 09:38 770基于Tomcat5.0和Axis2开发Web Service应 ... -
使用Axis2来构建Web Service客户端
2008-11-04 09:46 767使用Axis2来构建Web Service客户端 2 ... -
webservice-之使用axis+spring开发
2008-11-04 17:42 635... -
webservice-之使用axis+spring开发2
2008-11-04 17:42 800三、配置文件 (全部放在 ... -
Axis 开发WebService
2008-11-04 18:16 747Axis 开发WebService Axis 开发WebSe ... -
spring与axis的整合
2008-11-04 18:23 693spring与axis的整合 eclipse resin ax ... -
在Eclipse中创建基于Axis2的web services
2008-11-05 09:04 1034本实验的目的是让你尽可能快的创建使用 Axis2 的服务和客户 ... -
Axis2快速上手指南
2008-11-05 09:06 727本指南的目的是让你尽可能快的创建使用Axis2的服务和客户端, ... -
Axis2快速上手指南2
2008-11-05 09:07 694创建服务 在这个部分,我们将看看根据StockQuoteSe ... -
Axis2快速上手指南4
2008-11-05 09:08 856使用ADB生成一个客户端 执行以下步骤来使用Axis Dat ... -
Axis2 Integration With The Spring Framework
2008-11-05 09:16 881Axis2 Integration With The Spri ... -
定义web service接口的十点注意事项
2008-11-05 14:03 1249一、接口是自说明的。 也就是说,接口的名字、参数和返回值在一看 ...
相关推荐
在"WebService之axis2案例"中,我们有两个关键部分:服务端(WebService_server)和客户端(WebService_client)。服务端是提供Web服务的应用程序,它定义了对外公开的接口和业务逻辑,这些接口可以通过SOAP(Simple...
SpringBoot以其便捷的启动和配置方式,已经成为Java开发中的首选框架之一。而 Axis 是一个流行的Apache项目,用于创建和部署Web服务,它提供了强大的SOAP处理能力。通过整合SpringBoot与Axis,我们可以快速构建高效...
Axis2开发webservice总结,资源一般,希望对大家有用
资源包含了:axis2-1.7.4-bin.zip、axis2-1.7.4-war.zip、axis2-eclipse-...备注:资源超过了70M 分成了2部分 见axis2方式开发webservice(一)和 axis2方式开发webservice(二)、 axis2方式开发webservice(三)
在IT行业中,Axis2是Apache软件基金会开发的一个用于构建Web服务和Web服务客户端的框架,主要基于Java语言。本文将详细讲解如何使用Axis2来发布Web服务以及如何生成客户端代码来调用这些服务。 首先,让我们了解...
资源包含了:axis2-1.7.4-bin.zip、axis2-1.7.4-war.zip、axis2-eclipse-...备注:资源超过了70M 分成了3部分 见axis2方式开发webservice(一)和 axis2方式开发webservice(二)、 axis2方式开发webservice(三)
总结来说,Axis2是Apache软件基金会的一个开源项目,提供了一种高效且灵活的方式来开发和部署Web服务。开发者可以利用其强大的功能来构建复杂的分布式应用程序,实现跨平台的数据交换。理解Web服务的基本原理,熟练...
### WebService之Axis2经典教程 #### 一、概述 随着信息技术的发展,Web Service作为一种重要的分布式计算模式,已经成为实现服务导向架构(SOA)的关键技术之一。Axis2作为一款流行的Web Service引擎,不仅具备高...
WebService之Axis2实例是Web服务开发中的一个重要环节,它基于SOAP协议,允许不同平台和语言间的应用程序进行通信。本文将详细介绍Axis2实例的创建、配置和运行,以及如何利用Eclipse IDE、JDK 1.7和Tomcat 7.0进行...
Apache Axis2是Apache软件基金会开发的一个Web服务引擎,它提供了高效且灵活的Web服务解决方案。 **Web服务**是一种在互联网上不同系统间交换数据的方式,它允许应用程序之间通过标准协议进行通信。Web服务通常使用...
Axis2是Apache软件基金会开发的一个高性能、灵活且可扩展的Web Service引擎,它是Apache SOAP项目的后续产品,主要用Java语言实现。 Axis2的核心功能包括: 1. **消息处理**:Axis2能够处理SOAP 1.1和1.2消息,...
### Axis2 WebService 开发总结 #### 一、概述 本文档主要介绍使用 Axis2 进行 WebService 开发的基本步骤和技术要点。Axis2 是 Apache 组织下的一个开源项目,它提供了一种简单有效的方式来构建和部署 Web...
标题中的“axis2+spring webservice”指的是使用Apache Axis2框架与Spring框架集成来开发Web服务。Apache Axis2是Java环境中广泛使用的Web服务引擎,它提供了高性能、灵活且可扩展的架构。Spring框架则是一个全面的...
【WebService的基础知识】 1.1 WebService的定义与作用 WebService是一种按照W3C标准设计的软件系统,旨在实现跨网络的机器间交互操作。...学习AXIS2有助于深入理解WebService开发,并能快速构建实际应用。
在"webservice之axis实例,axis复杂对象"这个主题中,我们将关注以下核心知识点: 1. **SOAP与WSDL**: SOAP是一种轻量级的消息协议,用于在Web上交换结构化的和类型化的信息。WSDL则是一种XML格式,用来描述Web...
### WebService大讲堂之Axis2:深入了解零配置的WebService开发 #### 一、Axis2简介及下载安装 Axis2是Apache软件基金会提供的一款高性能、轻量级的WebService引擎,它是在Axis1.x的基础上重新设计的产物,不仅...