awips2/edexOsgi/com.raytheon.uf.edex.registry.request/res/spring/ebxml-request-router.xml
2022-05-05 12:34:50 -05:00

37 lines
No EOL
1.6 KiB
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="requestRegistryRouter"
class="com.raytheon.uf.edex.requestsrv.router.RemoteServerRequestRouter">
<constructor-arg
value="http://${ebxml.registry.host}:${ebxml.thrift.service.port}/services" />
</bean>
<bean id="registerRequestRegistryRouter" factory-bean="requestRouterRegistry"
factory-method="register">
<constructor-arg ref="ebxmlRegistryServiceKey" />
<constructor-arg ref="requestRegistryRouter" />
</bean>
<!-- Registry service location registration -->
<bean factory-bean="serverLocationRegistry" factory-method="register">
<constructor-arg ref="ebxmlRegistryServiceKey" />
<constructor-arg
value="http://${ebxml.registry.host}:${ebxml.thrift.service.port}/services" />
</bean>
<bean factory-bean="serverLocationRegistry" factory-method="register">
<constructor-arg ref="ebxmlLcmServiceKey" />
<constructor-arg
value="http://${ebxml.registry.host}:${ebxml.thrift.service.port}/lifecycleManager?WSDL" />
</bean>
<bean factory-bean="serverLocationRegistry" factory-method="register">
<constructor-arg ref="ebxmlQueryServiceKey" />
<constructor-arg
value="http://${ebxml.registry.host}:${ebxml.thrift.service.port}/queryManager?WSDL" />
</bean>
</beans>