欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java编程Webservice指定超时时间代码详解

程序员文章站 2024-02-26 19:01:58
webservice是一种跨编程语言和跨操作系统平台的远程调用技术 所谓远程调用,就是一台计算机a上的一个程序可以调用到另外一台计算机b上的一个对象的方法,譬如,银联提供...

webservice是一种跨编程语言和跨操作系统平台的远程调用技术

所谓远程调用,就是一台计算机a上的一个程序可以调用到另外一台计算机b上的一个对象的方法,譬如,银联提供给商场的pos刷卡系统(采用交互提问的方式来加深大家对此技术的理解)。

远程调用技术有什么用呢?商场的pos机转账调用的转账方法的代码是在银行服务器上,还是在商场的pos机上呢?什么情况下可能用到远程调用技术呢?例如,amazon,天气预报系统,淘宝网,校内网,百度等把自己的系统服务以webservice服务的形式暴露出来,让第三方网站和程序可以调用这些服务功能,这样扩展了自己系统的市场占有率,往大的概念上吹,就是所谓的soa应用。

所谓跨编程语言和跨操作平台,就是说服务端程序采用java编写,客户端程序则可以采用其他编程语言编写,反之亦然!跨操作系统平台则是指服务端程序和客户端程序可以在不同的操作系统上运行。

除了webservice外,常见的远程调用技术还有rmi(remotemethodinvoke)和corba,由于webservice的跨平台和跨编程语言特点,因此比其他两种技术应用更为广泛,但性能略低。

使用jdk对webservice的支持进行webservice调用时通常的操作步骤如下:

//1、创建一个javax.xml.ws.service实例
javax.xml.ws.service service = javax.xml.ws.service.create(wsdl, servicename);
//2、通过service实例获取对应的服务接口的代理
helloservice helloservice = service.getport(portname, helloservice.class);
//3、通过获取到的webservice服务接口的代理调用对应的服务方法
helloservice.sayhello("elim")

在上述的步骤一在构建service实例的同时,在service内部会构建一个servicedelegate类型的对象赋给属性delegate,内部持有。然后在第二步会利用delegate创建一个服务接口的代理对象,同时还会代理bindingprovider和closeable接口。然后在第三步真正发起接口请求时,内部会发起一个http请求,发起http请求时会从bindingprovider的getrequestcontext()返回结果中获取超时参数,分别对应com.sun.xml.internal.ws.connection.timeout和com.sun.xml.internal.ws.request.timeout参数,前者是建立连接的超时时间,后者是获取请求响应的超时时间,单位是毫秒。如果没有指定对应的超时时间或者指定的超时时间为0都表示永不超时。所以为了指定超时时间我们可以从bindingprovider下手。比如:

public class client {

	public static void main(string[] args) throws exception {
		string targetnamespace = "http://test.elim.com/ws";
		qname servicename = new qname(targetnamespace, "helloservice");
		qname portname = new qname(targetnamespace, "helloservice");
		url wsdl = new url("http://localhost:8888/hello");
		//内部会创建一个servicedelegate类型的对象赋给属性delegate
		service service = service.create(wsdl, servicename);
		//会利用delegate创建一个服务接口的代理对象,同时还会代理bindingprovider和closeable接口。
		helloservice helloservice = service.getport(portname, helloservice.class);
		
		
		bindingprovider bindingprovider = (bindingprovider) helloservice;
		map<string, object> requestcontext = bindingprovider.getrequestcontext();
		requestcontext.put("com.sun.xml.internal.ws.connection.timeout", 10 * 1000);//建立连接的超时时间为10秒
		requestcontext.put("com.sun.xml.internal.ws.request.timeout", 15 * 1000);//指定请求的响应超时时间为15秒
		
		//在调用接口方法时,内部会发起一个http请求,发起http请求时会从bindingprovider的getrequestcontext()返回结果中获取超时参数,
		//分别对应com.sun.xml.internal.ws.connection.timeout和com.sun.xml.internal.ws.request.timeout参数,
		//前者是建立连接的超时时间,后者是获取请求响应的超时时间,单位是毫秒。如果没有指定对应的超时时间或者指定的超时时间为0都表示永不超时。
		
		system.out.println(helloservice.sayhello("elim"));
	}
	
}

完整示例如下:

服务接口:

@webservice(portname="helloservice", servicename="helloservice", targetnamespace="http://test.elim.com/ws")
public interface helloservice {

	string sayhello(string name);
	
}

服务接口实现:

@webservice(portname="helloservice", servicename="helloservice", targetnamespace="http://test.elim.com/ws")
public class helloserviceimpl implements helloservice {
	private random random = new random();
	@override
		public string sayhello(string name) {
		try {
			timeunit.seconds.sleep(5 + random.nextint(21));
			//随机睡眠5-25秒
		}
		catch (interruptedexception e) {
			e.printstacktrace();
		}
		return "hello " + name;
	}
}

服务端代码:

public class server {
	public static void main(string[] args) {
		endpoint.publish("http://localhost:8888/hello", new helloserviceimpl());
	}
}

在上述的服务端代码中随机睡眠了5-25秒,而客户端指定的超时时间是15秒,所以在测试的时候你会看到有时候服务调用会超时,有时会正常响应。

总结

以上就是本文关于java编程webservice指定超时时间代码详解的全部内容,希望对大家有所帮助。如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!