04-11-2017 04:15 PM
Buenas tardes, estoy tratando de implementar una tarea programada en xml que me mande al repositorio los documentos creados cada día. La tengo programada para que se ejecute cada 15 segundos para probar su funcionalidad. Pero no me esta permitiendo el ingreso/login a Alfresco una vez reiniciado. Esto es lo que tengo. Espero me puedan echar una mano si ven que algo no esta bien en el codigo.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean id="copyAction" class='org.alfresco.repo.action.scheduled.CronScheduledQueryBasedTemplateActionDefinition'>
<property name="transactionMode">
<value>UNTIL_FIRST_FAILURE</value>
</property>
<property name="compensatingActionMode">
<value>IGNORE</value>
</property>
<!--Realizar la busqueda -->
<property name="queryLanguage">
<value>lucene</value>
</property>
<property name="stores">
<list>
<value>workspace://SpacesStore</value>
</list>
</property>
<property name="queryTemplate">
<value>@cm\:created:TODAY</value>
</property>
<!--establecer el tiempo de ejecucion // Cada 15 segundos -->
<property name="cronExpression">
<value>15 * * * * ?</value>
</property>
<!--Realizar la accion de copia -->
<property name="actionName">
<value>copy</value>
</property>
<property name="parameterTemplates">
<map>
<entry>
<key>
<value>destination-folder</value>
</key>
<value>\$\{selectSingleNode('workspace://SpacesStore', 'lucene', 'PATH:"/app:company_home"' )\}</value>
</entry>
<entry>
<key>
<value>assoc-type</value>
</key>
<key>
<value>deep-copy</value>
</key>
<value>false</value>
</entry>
</map>
</property>
<property name="jobName">
<value>jobC</value>
</property>
<property name="jobGroup">
<value>jobGroup</value>
</property>
<property name="triggerName">
<value>triggerC</value>
</property>
<property name="triggerGroup">
<value>triggerGroup</value>
</property>
<property name="scheduler">
<ref bean="schedulerFactory"/>
</property>
<property name='templateActionModelFactory'>
<ref bean='templateActionModelFactory'/>
</property>
<property name='dictionaryService'>
<ref bean='DictionaryService'/>
</property>
<property name='actionService'>
<ref bean='ActionService'/>
</property>
<property name='templateService'>
<ref bean='TemplateService'/>
</property>
<property name="runAsUser">
<value>System</value>
</property>
</bean>
</beans>
Mil gracias.
04-21-2017 05:14 AM
04-21-2017 05:28 AM
Hola:
A falta de logs, y excluyendo problemas de sintaxis y tal, ¿ ese id para el bean no es muy genérico ? Prueba por ejemplo con copyActionPRTest
Saludos.
--C.
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.