]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.example/exampleSlcAppli/conf/execution.xml
New runtime end to end (not yet working)
[gpl/argeo-slc.git] / org.argeo.slc.example / exampleSlcAppli / conf / execution.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
5
6 <bean name="executionBuildListener"
7 class="org.argeo.slc.ant.SlcExecutionBuildListener">
8 <property name="notifiers">
9 <list>
10 <ref bean="fileNotifier" />
11 <!-- <ref bean="webServiceNotifier" />-->
12 </list>
13 </property>
14 </bean>
15
16 <bean id="marshaller"
17 class="org.springframework.oxm.castor.CastorMarshaller">
18 <property name="mappingLocation"
19 value="classpath:org/argeo/slc/castor/process/mapping.xml" />
20 </bean>
21
22 <bean name="fileNotifier"
23 class="org.argeo.slc.core.process.FileSlcExecutionNotifier">
24 <property name="basePath" value="${slc.workDir}/process" />
25 <property name="marshaller" ref="marshaller" />
26 </bean>
27 <!--
28 <bean name="webServiceNotifier"
29 class="org.argeo.slc.core.process.WebServiceSlcExecutionNotifier">
30 <property name="template" ref="webServiceTemplate" />
31 </bean>
32
33 <bean id="webServiceTemplate"
34 class="org.springframework.ws.client.core.WebServiceTemplate">
35 <constructor-arg ref="messageFactory" />
36 <property name="marshaller" ref="marshaller"/>
37 <property name="unmarshaller" ref="marshaller"/>
38 <property name="defaultUri"
39 value="http://localhost:8080/org.argeo.slc.webapp/slcService/" />
40 </bean>
41
42 <bean id="messageFactory"
43 class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory" />
44 -->
45 </beans>