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 to FATAL to hide the logging of EVERY incoming and outgoing messages. -->
16
	<cxf:bus>
17
		<cxf:outInterceptors>
18
			<ref bean="outCxfLoggingInterceptor" />
19
		</cxf:outInterceptors>
20
		<cxf:inInterceptors>
21
			<ref bean="inCxfLoggingInterceptor" />
22
		</cxf:inInterceptors>
23
	</cxf:bus>
24

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

    
28

    
29
	<!-- <cxf:bus> -->
30
		<!--		<cxf:inInterceptors>-->
31
		<!--
32
			<bean id="logInbound"
33
			class="org.apache.cxf.interceptor.LoggingInInterceptor" />
34
		-->
35
		<!--
36
			<bean id="logOutbound"
37
			class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
38
		-->
39
		<!--			</condbean:cond>-->
40
		<!--		</cxf:inInterceptors>-->
41

    
42
<!-- 		<cxf:features> -->
43
<!--			 <wsa:addressing />-->
44

    
45
<!--			<cxf:logging />-->
46

    
47
			<!--  <pol:policies ignoreUnknownAssertions="true"/> -->
48
<!-- 		</cxf:features> -->
49
<!-- 	</cxf:bus> -->
50

    
51

    
52
	<http:conduit name="*.http-conduit">
53
		<http:client AllowChunking="true" Connection="Keep-Alive" />
54
	</http:conduit>
55
</beans>
(2-2/4)