awips2/edexOsgi/com.raytheon.uf.edex.wms/res/spring/wms-ogc-request.xml
Bryan Kowal 1996f92f7e Issue #1455 - Merge 5-Data_Delivery into AWIPS2_baseline
Former-commit-id: ab8b346489 [formerly c8a43edd9e] [formerly ab8b346489 [formerly c8a43edd9e] [formerly d6b4cb65f4 [formerly b535a90fb25287945485c10b3c85749c11285171]]]
Former-commit-id: d6b4cb65f4
Former-commit-id: 6d7f57c62a [formerly 146c43a606]
Former-commit-id: 0136f9d5a3
2013-01-07 12:16:01 -06:00

60 lines
No EOL
2.1 KiB
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core" 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-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="gmlFeatureFormatter" class="com.raytheon.uf.edex.wms.format.GmlFeatureFormatter" >
</bean>
<bean id="htmlFeatureFormatter" class="com.raytheon.uf.edex.wms.format.HtmlFeatureFormatter" >
</bean>
<bean id="jaxbManager" class="com.raytheon.uf.edex.ogc.common.jaxb.OgcJaxbManager">
<constructor-arg>
<list>
<value type="java.lang.Class">net.opengis.wms.v_1_3_0.ObjectFactory</value>
<value type="java.lang.Class">net.opengis.sld.v_1_1_0.ObjectFactory</value>
</list>
</constructor-arg>
</bean>
<bean id="sldReg" class="com.raytheon.uf.edex.wms.sld.SldParserRegistryImpl" />
<bean factory-bean="sldReg" factory-method="register" >
<constructor-arg>
<list>
<bean class="com.raytheon.uf.edex.wms.sld.SldParser100"/>
</list>
</constructor-arg>
</bean>
<bean id="gmTranslator" class="com.raytheon.uf.edex.wms.provider.OgcGetMapTranslator" >
<constructor-arg ref="sldReg"/>
</bean>
<bean id="wmsHttpPool" class="com.raytheon.uf.edex.ogc.common.http.OgcHttpPool" destroy-method="drain">
<constructor-arg ref="wmsFactory" />
</bean>
<bean id="wmsFactory" class="com.raytheon.uf.edex.wms.WmsHttpFactory">
<constructor-arg ref="jaxbManager" />
<constructor-arg ref="gmTranslator" />
</bean>
<bean id="wmserv" class="com.raytheon.uf.edex.ogc.common.http.OgcHttpEndpoint">
<constructor-arg ref="wmsHttpPool" />
</bean>
<camelContext id="wms-camel" xmlns="http://camel.apache.org/schema/spring" errorHandlerRef="errorHandler">
<route id="WmsRest">
<from uri="jetty:http://0.0.0.0:8085/wms" />
<bean ref="wmserv" />
</route>
</camelContext>
</beans>