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:jaxws="http://cxf.apache.org/jaxws"
4
	xmlns:sec="http://cxf.apache.org/configuration/security" xmlns:wsa="http://cxf.apache.org/ws/addressing"
5
	xmlns:p="http://www.springframework.org/schema/p" xmlns:http="http://cxf.apache.org/transports/http/configuration"
6

    
7
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
8
                                    http://cxf.apache.org/ws/addressing http://cxf.apache.org/schemas/ws-addr-conf.xsd
9
                                    http://cxf.apache.org/configuration/security http://cxf.apache.org/schemas/configuration/security.xsd
10
                                    http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd
11
                            http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
12

    
13
	<bean id="jaxwsEndpointReferenceBuilder" class="eu.dnetlib.soap.cxf.JaxwsEndpointReferenceBuilder"
14
		p:builder-ref="cxfEndpointReferenceBuilder" />
15

    
16
	<bean id="cxfEndpointReferenceBuilder"
17
		class="eu.dnetlib.soap.cxf.StandaloneCxfEndpointReferenceBuilder"
18
		p:baseAddress="${transport.soap.baseAddress}"
19
		p:forceLocalAddress="${transport.soap.force.local.address}">
20
		<property name="defaultMetadata">
21
			<map>
22
				<entry key="{http://dnetlib.eu/endpointReference}infrastructure"
23
					value="${infrastructure.name}" />
24
			</map>
25
		</property>
26
	</bean>
27

    
28
</beans>
(2-2/2)