<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Task completion reminder in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151093#M105885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;this could be done by xml but for that you have to hire developer if you dont know how to do this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Feb 2014 13:20:08 GMT</pubDate>
    <dc:creator>michael_thompso</dc:creator>
    <dc:date>2014-02-08T13:20:08Z</dc:date>
    <item>
      <title>Task completion reminder</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151092#M105884</link>
      <description>Hello,Let me describe what I would like to archive. My goal is to make some kind of email notification about changes in the process. After completion of each task I would mail to creator and the assignee of next task.Can I add task listener thought designer? or it should be done by editing xml? I us</description>
      <pubDate>Fri, 07 Feb 2014 12:29:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151092#M105884</guid>
      <dc:creator>matesu</dc:creator>
      <dc:date>2014-02-07T12:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Task completion reminder</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151093#M105885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;this could be done by xml but for that you have to hire developer if you dont know how to do this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 13:20:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151093#M105885</guid>
      <dc:creator>michael_thompso</dc:creator>
      <dc:date>2014-02-08T13:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Task completion reminder</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151094#M105886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That is possible with a global parse handler: &lt;/SPAN&gt;&lt;A href="http://activiti.org/userguide/index.html#advanced_parseHandlers" rel="nofollow noopener noreferrer"&gt;http://activiti.org/userguide/index.html#advanced_parseHandlers&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add a handler for user tasks that adds the behaviour you want at runtime. Shouldn't need any XML changes for that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 08:59:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151094#M105886</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-02-10T08:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Task completion reminder</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151095#M105887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks jbarrez. I followed your instructions. Therefore I implemented:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;java&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class MailDistribuctionParseHandler extends AbstractActivityBpmnParseHandler&amp;lt;UserTask&amp;gt; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; private static final Logger logger = LoggerFactory.getLogger(MailDistribuctionParseHandler.class);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; @Override&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; protected void executeParse(BpmnParse bpmnParse, UserTask userTask) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ActivityImpl activity = findActivity(bpmnParse, userTask.getId());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; String assignee = userTask.getAssignee();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; String owner = userTask.getOwner();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; System.out.println("———————- " + assignee + " " + owner + " —————-");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; logger.info("———————- " + assignee + " " + owner + " —————-");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/java&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then packed to jar, put in libs and registered as postBpmnParseHandlers. I created and instantiated a proccess. After using a REST API to finnish user task I did not notice anything in logs. Would this parser activate while I finnish task with REST API?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mat&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 11:20:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151095#M105887</guid>
      <dc:creator>matesu</dc:creator>
      <dc:date>2014-02-11T11:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Task completion reminder</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151096#M105888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Mat,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The parse handler is executed when the process definition is deployed to the Activiti Engine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So not when executing a task. You can add the task listener you need in this parse handler and that listener will be executed at runtime.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 14:57:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/task-completion-reminder/m-p/151096#M105888</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2014-02-11T14:57:53Z</dc:date>
    </item>
  </channel>
</rss>

