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>
|
16
|
<cxf:inInterceptors>
|
17
|
<!-- <bean id="logInbound" class="org.apache.cxf.interceptor.LoggingInInterceptor" />-->
|
18
|
<!-- <bean id="logOutbound" class="org.apache.cxf.interceptor.LoggingOutInterceptor" />-->
|
19
|
</cxf:inInterceptors>
|
20
|
<cxf:features>
|
21
|
<!-- <wsa:addressing />-->
|
22
|
<!-- <cxf:logging />-->
|
23
|
<!-- <pol:policies ignoreUnknownAssertions="true" />-->
|
24
|
</cxf:features>
|
25
|
</cxf:bus>
|
26
|
|
27
|
|
28
|
<http:conduit name="*.http-conduit">
|
29
|
<http:client AllowChunking="true" Connection="Keep-Alive" />
|
30
|
</http:conduit>
|
31
|
</beans>
|