// UserAction.java
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Random;
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;
/**
* pojo class
* 服务端信息
* @author dycc
*/
public class UserAction {
private static String namespace = "http://ws.apache.org/axis2";
/**
* 有返回值:无参
* 服务器当前版本
* @return
*/
public String version(){
return "版本:1.0";
}
/**
* 有返回值:有简单参数
* 随机数
* @param from
* @param to
* @return
*/
public int randomNumber(int from,int to){
Random random = new Random();
int range = to - from;
if(range < 1){
range = 1;
}
int num = random.nextInt(range) + from;
return num;
}
/**
* 有返回值:有复杂参数
* 用户注册
* @param userId
* @return
*/
public boolean register(UserInfo user){
if(user == null || user.getId().equals("")){
System.out.println("false-" + user);
return false;
}
// 查看用户信息
System.out.println("true-" + user);
return true;
}
/**
* 无返回值:有简单参数
* 注销
* @param userId
*/
public void logOut(String userId){
System.out.println("下线:" + userId);
}
/**
* 有返回值:有复杂参数
* 上传图像
* @param imageByte 图像文件字节数组
* @param length 图像文件字节长度 <= imageByte.length
* @return
*/
public boolean uploadImageWithByte(byte[] imageByte,int length){
String path = "D:/Temp/uu.jpg";
FileOutputStream fos = null;
try{
fos = new FileOutputStream(path);
fos.write(imageByte,0,length);
fos.flush();
fos.close();
} catch(Exception e){
return false;
} finally{
if(fos != null){
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return true;
}
/**
* 有返回值:有参
* @param element
* @return
* @throws XMLStreamException
*/
public OMElement bookInfo(OMElement element)throws XMLStreamException{
element.build();
element.detach();
//
String isbn = element.getText();
//
OMFactory fac = OMAbstractFactory.getOMFactory();
OMNamespace omNs = fac.createOMNamespace(
namespace, // uri
""); // prefix
//
OMElement method = fac.createOMElement("bookInfoResponse",omNs);
OMElement om_isbn = fac.createOMElement("isbn",omNs);
OMElement om_name = fac.createOMElement("bookName",omNs);
OMElement om_pub = fac.createOMElement("publisher",omNs);
//
om_isbn.addChild(fac.createOMText(om_isbn,"isbn:"+isbn));
om_name.addChild(fac.createOMText(om_name,"bookName:编程之美"));
om_pub.addChild(fac.createOMText(om_pub,"出版社:电子工业出版社"));
method.addChild(om_isbn);
method.addChild(om_name);
method.addChild(om_pub);
//
return method;
}
}
// UserInfo.java
import java.io.Serializable;
/**
* 用户信息
* @author dycc
*
*/
public class UserInfo implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
// 用户 id
private String id = "";
// 用户名
private String name = "";
// 级别
private int level = 0;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getLevel() {
return level;
}
public void setLevel(int level) {
this.level = level;
}
/**
* toString
*/
public String toString(){
StringBuffer sb = new StringBuffer();
sb.append("UserInfo:[");
sb.append("id=" + id);
sb.append(",name=" + name);
sb.append(",level=" + level);
sb.append("]");
return sb.toString();
}
}
// SimRpcClient.java
import java.io.File;
import java.io.FileInputStream;
import java.util.Iterator;
import javax.xml.namespace.QName;
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.Constants;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.rpc.client.RPCServiceClient;
public class SimRpcClient {
private static String toEpr = "http://localhost:8080/ws/services/UserAction/";
private static String namespace = "http://ws.apache.org/axis2";
private static RPCServiceClient client = null;
static {
try{
client = new RPCServiceClient();
}catch(Exception e){
e.printStackTrace();
}
}
/**
* @param args
*/
public static void main(String[] args) {
SimRpcClient t = new SimRpcClient();
//
t.invokeReturnNoArgs(); // 有返回值:无参
t.invokeReturnSimpleArgs(); // 有返回值:有简单参数
t.invokeReturnComplexArgs(); // 有返回值:有复杂参数 [一个对象实例]
t.invokeSimpleArgs(); // 无返回值:有简单参数
t.invokeReturnComplexArgs2(); // 有返回值:有复杂参数[byte数组]上传图片
t.invokeIom(); // 有返回值:有复杂参数[OMElement]
}
/**
* 有返回值:无参
*/
public void invokeReturnNoArgs(){
try{
Options options = client.getOptions();
options.setTo(new EndpointReference(toEpr));
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
//
Object[] args = new Object[]{}; // 无参
Class[] classes = new Class[]{String.class}; // 返回类型: String
QName opName = new QName(namespace,"version");
//
String result = (String)client.invokeBlocking(opName,args,classes)[0];
//
System.out.println(result);
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 有返回值:有简单参数
*/
public void invokeReturnSimpleArgs(){
try{
Options options = client.getOptions();
options.setTo(new EndpointReference(toEpr));
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
//
Object[] args = new Object[]{10,22}; // 简单参数
Class[] classes = new Class[]{int.class}; // 返回类型: int
QName opName = new QName(namespace,"randomNumber");
//
int result = (Integer)client.invokeBlocking(opName,args,classes)[0];
//
System.out.println(result);
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 有返回值:有复杂参数 [一个对象实例]
*/
public void invokeReturnComplexArgs(){
try{
Options options = client.getOptions();
options.setTo(new EndpointReference(toEpr));
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
//
UserInfo user = new UserInfo();
user.setId("stu_007");
user.setName("xuanyuan");
user.setLevel(10);
Object[] args = new Object[]{user}; // 复杂参数
Class[] classes = new Class[]{boolean.class}; // 返回类型: boolean
QName opName = new QName(namespace,"register");
//
boolean result = (Boolean)client.invokeBlocking(opName,args,classes)[0];
//
System.out.println(result);
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 无返回值:有简单参数
*/
public void invokeSimpleArgs(){
try{
Options options = client.getOptions();
options.setTo(new EndpointReference(toEpr));
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
//
Object[] args = new Object[]{"明月"}; // 简单参数
QName opName = new QName(namespace,"logOut");
//
client.invokeRobust(opName, args); // 调用无返回值的操作
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 有返回值:有复杂参数[byte数组]上传图片
*/
public void invokeReturnComplexArgs2(){
try {
Options options = new Options();
options.setTo(new EndpointReference(toEpr));
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
//
String path = "E:\\pictures\\02.jpg";
File file = new File(path);
FileInputStream in = new FileInputStream(file);
byte[] buf = new byte[(int) file.length()]; // 数组的大小只能为int,不能为long
int len = in.read(buf);
in.close();
Object[] args = new Object[] { buf, len }; // 复杂参数
Class[] classes = new Class[] { boolean.class };// 返回类型:boolean
QName opName = new QName(namespace, "uploadImageWithByte");
boolean res = (Boolean)client.invokeBlocking(opName, args, classes)[0];
System.out.println("上传图片:" + res);
}catch(Exception e){
e.printStackTrace();
}
}
/**
* 有返回值:有复杂参数[OMElement]
*/
public void invokeIom(){
try{
Options options = new Options();
options.setTo(new EndpointReference(toEpr));
options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
//
OMFactory fac = OMAbstractFactory.getOMFactory();
OMNamespace omNs = fac.createOMNamespace(
namespace, // uri
""); // prefix
OMElement method = fac.createOMElement("bookInfo",omNs);
OMElement value = fac.createOMElement("isbn",omNs);
value.addChild(fac.createOMText(value,"978-7-121-06074-8中文"));
method.addChild(value);
//
OMElement result = client.sendReceive(method);
//
OMElement returnEl = result.getFirstElement();
OMElement responseEl = returnEl.getFirstElement();
Iterator<OMElement> it = responseEl.getChildElements();
while(it.hasNext()){
OMElement el = it.next();
System.out.println(el.getText());
}
//
System.out.println("...end...");
}catch(Exception e){
e.printStackTrace();
}
}
}
分享到:
相关推荐
1. **创建WebService**:在Axis2中,可以通过编写一个简单的Java类并暴露其方法作为Web服务接口。这个类通常会遵循SOAP协议,定义服务操作。例如,你可以创建一个名为`HelloWorldService`的类,包含一个`sayHello`...
axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例axis2例子 webservice axis2 示例
### Axis2实现WebService知识点 #### 一、Axis2简介 - **定义**:Apache Axis2是基于Java的一个开源的WebService框架,它支持多种标准(包括SOAP1.1、SOAP1.2、WS-Addressing等),并且具有轻量级、模块化的特点。...
当我们需要在Spring项目中提供Web服务时,Axis2是一个常用的工具,它是一个高效的Web服务引擎,支持SOAP 1.1和1.2,以及RESTful服务。本篇文章将详细介绍如何在Spring中集成Axis2来实现Web服务,并且会提及相关的Jar...
Axis2创建WebService
标题中的“axis2+spring webservice”指的是使用Apache Axis2框架与Spring框架集成来开发Web服务。Apache Axis2是Java环境中广泛使用的Web服务引擎,它提供了高性能、灵活且可扩展的架构。Spring框架则是一个全面的...
本文将详细介绍如何使用Axis2调用WebService接口,并基于提供的jar包"axis2-1.7.6"进行说明。 **一、Axis2简介** Axis2是Apache软件基金会开发的一个Web服务引擎,它基于SOAP(Simple Object Access Protocol)和WS...
2. **Axis2Client**:可能包含了客户端的代码,如生成的服务代理类、调用服务的示例程序等。 总的来说,这个压缩包提供了一个完整的基于Axis2的Web服务实现示例,包括服务端创建服务和客户端调用服务的所有必要组件...
标题“Java-tomcat-axis2开发webservice返回json数据”涉及的是使用Java、Tomcat服务器以及Axis2框架来创建Web服务,并返回JSON格式的数据。这是一个常见的技术组合,用于构建RESTful API或者提供服务化接口。下面...
在本文中,我们将深入探讨如何使用Spring、Axis2和Maven构建一个基于Java的Web服务(WebService)服务端示例。这些技术的结合为开发人员提供了高效、灵活且可扩展的解决方案来创建和消费Web服务。 首先,让我们了解...
资源包含了:axis2-1.7.4-bin.zip、axis2-1.7.4-war.zip、axis2-eclipse-...备注:资源超过了70M 分成了3部分 见axis2方式开发webservice(一)和 axis2方式开发webservice(二)、 axis2方式开发webservice(三)
Axis2 在默认情况下可以热发布 WebService,也就是说,将 WebService 的.class 文件复制到 pojo 目录中时,Tomcat 不需要重新启动就可以自动发布 WebService。 Axis2 的热更新 Axis2 在默认情况下虽然是热发布,但...
标题中的“axis2webservice接口例子”指的是使用Apache Axis2框架创建的一个Web服务接口实例。Apache Axis2是Java平台上的一款强大的Web服务开发工具,它提供了高效、灵活且可扩展的环境来构建和部署Web服务。这个...
Axis2是Apache软件基金会开发的一个高效且灵活的Web服务引擎,它允许开发者用多种方式来创建Web服务,其中一种就是通过POJO(Plain Old Java Object)方式。这篇博文主要探讨了如何使用Axis2通过POJO方式构建Web服务...
axis2-1.4.1-war.zip axis2-eclipse-codegen-wizard-1.4.zip axis2-eclipse-service-archiver-wizard-1.4.zip axis2创建webservice.txt(教程链接)
Axis2开发webservice总结,资源一般,希望对大家有用
标题中的“Axis2 WebService Client plugin”指的是一个用于MyEclipse集成开发环境的插件,其主要功能是帮助开发者创建和使用Axis2 Web服务客户端。Axis2是Apache软件基金会的一个开放源码项目,是一个高性能、灵活...
Axis2是Apache软件基金会的一个用于构建和部署WebService的引擎,它基于Apache Axis项目,并且是Apache Web服务堆栈的最新版本。Axis2支持SOAP和REST风格的WebService,并且能够以最小的资源消耗和高性能来处理SOAP...
标题"client_axis.rar_AxisClient_axis client_axis.client_webservice客户端"暗示了这个压缩包包含了一个与Axis相关的Web服务客户端。这个客户端可能是一个Java项目,包含了必要的类库和配置文件,用于与远程Web...