现在的位置: 首页 > 综合 > 正文

webService 超时设置

2017年12月26日 ⁄ 综合 ⁄ 共 1086字 ⁄ 字号 评论关闭

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:jaxws="http://cxf.apache.org/jaxws" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:cxf="http://cxf.apache.org/core"
	xmlns:http-conf="http://cxf.apache.org/transports/http/configuration" 
	xsi:schemaLocation="
	http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd   
	http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context-3.1.xsd     
	http://cxf.apache.org/jaxws  http://cxf.apache.org/schemas/jaxws.xsd
	http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
	http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd
	">

	<import resource="classpath:META-INF/cxf/cxf.xml" />
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

	<http-conf:conduit name="*.http-conduit">
		<http-conf:client AutoRedirect="true" ConnectionTimeout="1000" ReceiveTimeout="1200" />
	</http-conf:conduit> 

抱歉!评论已关闭.