Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cxf="http://cxf.apache.org/core"
4
	xmlns:http="http://cxf.apache.org/transports/http/configuration"
5
	xmlns:wsa="http://cxf.apache.org/ws/addressing" xmlns:p="http://www.springframework.org/schema/p"
6
	xmlns:pol="http://cxf.apache.org/policy" xmlns:condbean="http://dnetlib.eu/springbeans/condbean"
7
	xsi:schemaLocation="
8
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
9
		http://cxf.apache.org/ws/addressing http://cxf.apache.org/schemas/ws-addr-conf.xsd
10
		http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd
11
		http://cxf.apache.org/policy http://cxf.apache.org/schemas/policy.xsd
12
		http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
13
		http://dnetlib.eu/springbeans/condbean http://dnetlib.eu/springbeans/condbean.xsd">
14

    
15
	<!-- CXF bus with logging. Please set the log level of org.apache.cxf.interceptor 
16
		to FATAL to hide the logging of EVERY incoming and outgoing messages. -->
17
	<cxf:bus>
18
		<cxf:outInterceptors>
19
			<ref bean="outCxfLoggingInterceptor" />
20
		</cxf:outInterceptors>
21
		<cxf:inInterceptors>
22
			<ref bean="inCxfLoggingInterceptor" />
23
		</cxf:inInterceptors>
24
	</cxf:bus>
25

    
26
	<bean id="outCxfLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
27
	<bean id="inCxfLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingInInterceptor" />
28

    
29
	<http:conduit name="*.http-conduit">
30
		<http:client AllowChunking="true" Connection="Keep-Alive" />
31
	</http:conduit>
32
</beans>
(2-2/4)