Change-Id: Ia040164481647fc384a264cd2126b8f9438df594 Former-commit-id: b0ad25ccd9e20b6bf994a3a46ce38298c363adff
80 lines
No EOL
3 KiB
XML
80 lines
No EOL
3 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
|
|
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
|
http://cxf.apache.org/jaxws
|
|
http://cxf.apache.org/schemas/jaxws.xsd
|
|
http://cxf.apache.org/jaxrs
|
|
http://cxf.apache.org/schemas/jaxrs.xsd">
|
|
|
|
<import resource="file:///${edex.home}/conf/spring/edex-db.xml" />
|
|
<import resource="classpath:res/spring/eventbus-common.xml" />
|
|
<import resource="classpath:res/spring/ebxml.xml" />
|
|
<import resource="classpath:res/spring/ebxml-webservices.xml" />
|
|
<import resource="classpath:res/spring/ebxml-validator-plugins.xml" />
|
|
<import resource="classpath:res/spring/ebxml-querytypes.xml" />
|
|
<import resource="classpath:res/spring/ebxml-registry-dao.xml" />
|
|
<import resource="classpath:res/spring/ebxml-subscription.xml" />
|
|
<import resource="classpath:res/spring/ebxml-constants.xml" />
|
|
<import resource="classpath:res/spring/ebxml-thrift-client.xml" />
|
|
<import resource="classpath:res/spring/ebxml-xacml.xml" />
|
|
<import resource="classpath:res/spring/ebxml-impl.xml"/>
|
|
|
|
<import resource="classpath:META-INF/cxf/cxf.xml" />
|
|
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
|
|
|
|
<jaxws:server id="RegistryRequest"
|
|
serviceClass="com.raytheon.uf.common.registry.IRegistryRequestService" address="/registryRequest">
|
|
<jaxws:serviceBean>
|
|
<ref bean="routeWrapper" />
|
|
</jaxws:serviceBean>
|
|
</jaxws:server>
|
|
|
|
<!-- SOAP Service definitions -->
|
|
<jaxws:server id="QueryService" address="/queryManager">
|
|
<jaxws:serviceBean>
|
|
<ref bean="queryServiceImpl" />
|
|
</jaxws:serviceBean>
|
|
</jaxws:server>
|
|
|
|
<jaxws:server id="NotificationListenerService" address="/notificationListener">
|
|
<jaxws:serviceBean>
|
|
<ref bean="notificationServiceImpl" />
|
|
</jaxws:serviceBean>
|
|
</jaxws:server>
|
|
|
|
<jaxws:server id="LifecycleManagerServiceService" address="/lifecycleManager">
|
|
<jaxws:serviceBean>
|
|
<ref bean="lcmServiceImpl" />
|
|
</jaxws:serviceBean>
|
|
</jaxws:server>
|
|
|
|
<jaxws:server id="ValidatorService" address="/validator">
|
|
<jaxws:serviceBean>
|
|
<ref bean="validatorServiceImpl" />
|
|
</jaxws:serviceBean>
|
|
</jaxws:server>
|
|
|
|
<jaxws:server id="CatalogerService" address="/cataloger">
|
|
<jaxws:serviceBean>
|
|
<ref bean="catalogerServiceImpl" />
|
|
</jaxws:serviceBean>
|
|
</jaxws:server>
|
|
<!-- End Soap Service Definitions -->
|
|
|
|
<!-- REST Service Definitions -->
|
|
<jaxrs:server id="registryRestServices" address="/">
|
|
<jaxrs:serviceBeans>
|
|
<ref bean="registryAvailabilityService"/>
|
|
<ref bean="registryObjectsRestService" />
|
|
<ref bean="repositoryObjectsRestService" />
|
|
<ref bean="queryProtocolRestService" />
|
|
<ref bean="AddRegistryParty" />
|
|
<ref bean="ModifyRegistryParty" />
|
|
<ref bean="DeleteRegistryParty" />
|
|
</jaxrs:serviceBeans>
|
|
</jaxrs:server>
|
|
<!-- End REST Endpoint definitions -->
|
|
|
|
</beans> |