]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.ws.client/src/main/resources/org/argeo/slc/ws/client/spring/applicationContext.xml
Move to SLC legacy
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.ws.client / src / main / resources / org / argeo / slc / ws / client / spring / applicationContext.xml
diff --git a/runtime/org.argeo.slc.support.ws.client/src/main/resources/org/argeo/slc/ws/client/spring/applicationContext.xml b/runtime/org.argeo.slc.support.ws.client/src/main/resources/org/argeo/slc/ws/client/spring/applicationContext.xml
deleted file mode 100644 (file)
index 2cf78df..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-<!--
-
-    Copyright (C) 2007-2012 Mathieu Baudier
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-            http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
-
--->
-<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-2.5.xsd"
-       default-lazy-init="true">
-
-       <import
-               resource="classpath:/org/argeo/slc/castor/spring/applicationContext.xml" />
-       <import
-               resource="classpath:/org/argeo/slc/xml/spring/applicationContext.xml" />
-
-       <bean id="slcDefault.ws.client.webServiceTemplate"
-               parent="slcTemplate.ws.client.webServiceTemplate">
-               <constructor-arg ref="slcDefault.ws.client.messageFactory" />
-               <property name="defaultUri" value="${slc.ws.uri}" />
-       </bean>
-
-       <bean
-               class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
-               lazy-init="false">
-               <property name="systemPropertiesModeName"
-                       value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
-               <property name="ignoreUnresolvablePlaceholders" value="true" />
-               <property name="properties">
-                       <props>
-                               <prop key="slc.ws.uri">
-                                       http://localhost:9090/org.argeo.slc.webapp/slcService/
-                               </prop>
-                       </props>
-               </property>
-       </bean>
-
-       <bean id="slcTemplate.ws.client.webServiceTemplate"
-               class="org.springframework.ws.client.core.WebServiceTemplate"
-               abstract="true">
-               <property name="marshaller" ref="slcDefault.castor.marshaller" />
-               <property name="unmarshaller"
-                       ref="slcDefault.castor.marshaller" />
-               <property name="interceptors">
-                       <list>
-                               <bean
-                                       class="org.argeo.slc.ws.client.ValidatingClientInterceptor">
-                                       <property name="validator"
-                                               ref="slcDefault.xml.xsdValidator" />
-                               </bean>
-                       </list>
-               </property>
-       </bean>
-
-       <bean id="slcDefault.ws.client.messageFactory"
-               class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory" />
-
-       <bean name="slcDefault.ws.client.treeTestResultWsNotfier"
-               class="org.argeo.slc.ws.test.tree.WebServiceTreeTestResultNotifier">
-               <property name="template"
-                       ref="slcDefault.ws.client.webServiceTemplate" />
-               <property name="onlyOnClose" value="false" />
-       </bean>
-
-       <bean name="slcDefault.ws.client.slcExecutionNotifier"
-               class="org.argeo.slc.ws.process.WebServiceSlcExecutionNotifier">
-               <property name="template"
-                       ref="slcDefault.ws.client.webServiceTemplate" />
-       </bean>
-
-</beans>