awips2/edexOsgi/com.raytheon.uf.edex.registry.request/res/spring/ebxml-request-router.xml
Dave Hladky 0a29df8b76 Omaha #4774 plugin placement wrong.
Former-commit-id: 6d126dc07df8f12aace4e96bebe89da50c72378c
2015-08-25 12:51:33 -05:00

36 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-3.1.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>