Axis2-05 异步调用WebService

 

异步,说到异步需要首先将以下同步。同步就是代码按照顺序执行,当前面的代码的请求没有正常返回结果的情况下,后面的代码是不能运行。而异步正好和这点不同,异步是代码运行后,不管当前的请求是否返回结果,后面的代码都会继续运行。

 

1编写服务器端的代码

 

package com.iflytek.service;

/**
 * @author xdwang
 * 
 * @create Apr 25, 2013 9:42:58 PM
 * 
 * @email:[email protected]
 * 
 * @description 异步WebService服务器端代码
 * 
 */
public class AsynchronousService {
	public String execute() {
		System.out.println("正在执行此代码……");
		// 延迟5秒后,返回结果
		try {
			Thread.sleep(5000);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		return "完成";
	}
}

 

2、编写客户端测试代码

 

package com.iflytek.service;

import java.io.IOException;
import javax.xml.namespace.QName;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.client.async.AxisCallback;
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.rpc.client.RPCServiceClient;

/**
 * @author xdwang
 * 
 * @create Apr 25, 2013 9:46:53 PM
 * 
 * @email:[email protected]
 * 
 * @description 异步WebService客户端代码
 * 
 */
public class AsynchronousServiceClient {
	public static void main(String[] args) throws IOException {
		String target = "http://localhost:8080/axis2/services/AsynchronousService?wsdl";
		RPCServiceClient client = new RPCServiceClient();
		Options options = client.getOptions();
		options.setManageSession(true);

		EndpointReference epr = new EndpointReference(target);
		options.setTo(epr);

		QName qname = new QName("http://service.iflytek.com", "execute");
		// 指定调用的方法和传递参数数据,及设置返回值的类型
		client.invokeNonBlocking(qname, new Object[] {}, new AxisCallback() {

			public void onMessage(MessageContext ctx) {
				System.out.println(ctx.getEnvelope());
				System.out.println("Message:"
						+ ctx.getEnvelope().getFirstElement().getFirstElement()
								.getFirstElement().getText());
			}

			public void onFault(MessageContext ctx) {
			}

			public void onError(Exception ex) {
			}

			public void onComplete() {
			}
		});
		System.out.println("异步WebService");
		// 阻止程序退出
		System.in.read();
	}

}

 

上面是异步调用WebService的代码,调用的方法是client.invokeNonBlocking,这个方法有三个参数,参数一是执行的方法签名,参数二是执行该方法的参数,参数三是异步回调,这里隐式实现AxiaCallback接口

 

你可能感兴趣的:(java,webservice,异步,axis2)