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.
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.
Discussions about Alfresco Content Services and Alfresco Process Services in Spanish
Related:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.