<?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: Current Activiti Engine does not support Multiple ServiceTask concurrency orchestration, can not use Activiti in some scenario in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176369#M129499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As far I can see the requirement, you can fully use asynch service task. There is no need to use camel for this purpose.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Even if you need to use camel, you do not need to generate routes. A fixed static route seems to be suitable.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Oct 2014 13:21:30 GMT</pubDate>
    <dc:creator>smirzai</dc:creator>
    <dc:date>2014-10-21T13:21:30Z</dc:date>
    <item>
      <title>Current Activiti Engine does not support Multiple ServiceTask concurrency orchestration, can not use Activiti in some scenario</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176365#M129495</link>
      <description>I am implementing a scenario that is all the tasks are ServiceTask.For example, we are going to upgrading a group of servers, there are three types of servers, nginx, web and database servers, we find activiti's workflow engine can help with it, such as when upgrade servers, we need to control first</description>
      <pubDate>Wed, 28 May 2014 16:13:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176365#M129495</guid>
      <dc:creator>marschangfei</dc:creator>
      <dc:date>2014-05-28T16:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Current Activiti Engine does not support Multiple ServiceTask concurrency orchestration, can not use Activiti in some scenario</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176366#M129496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;BTW, I can find the Camel recommedation @ below link, but as our scenario is we will generate BPMN model dynamicly, but we can not generate the AsyncCamelRoute dynamicly, so this does not work for our scenario, hope Acitivti does support such general workflow orchestration&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.activiti.org/content/potentiality-and-limits-activiti-engine" rel="nofollow noopener noreferrer"&gt;http://forums.activiti.org/content/potentiality-and-limits-activiti-engine&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;package org.activiti.camel.route;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/**&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; * @author Saeid Mirzaei&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; */&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.apache.camel.builder.RouteBuilder;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;public class AsyncCamelRoute extends RouteBuilder {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; @Override&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public void configure() throws Exception {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from("activiti:asyncCamelProcess:serviceTaskAsync1").setHeader("destination", constant("activiti:asyncCamelProcess:receive1")).to("seda:asyncQueue");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from("seda:asyncQueue").to("bean:sleepBean?method=sleep").to("seda:receiveQueue");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from("activiti:asyncCamelProcess:serviceTaskAsync2").setHeader("destination", constant("activiti:asyncCamelProcess:receive2")).to("seda:asyncQueue2");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from("seda:asyncQueue2").to("bean:sleepBean?method=sleep").to("seda:receiveQueue");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from("seda:receiveQueue").recipientList(header("destination"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 16:36:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176366#M129496</guid>
      <dc:creator>marschangfei</dc:creator>
      <dc:date>2014-05-28T16:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Current Activiti Engine does not support Multiple ServiceTask concurrency orchestration, can not use Activiti in some scenario</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176367#M129497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Lots of people have similar requirements, hope Activiti Team can help us, Activiti is very good, we can not give it up just by some missing features, thanks very much!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 16:37:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176367#M129497</guid>
      <dc:creator>marschangfei</dc:creator>
      <dc:date>2014-05-28T16:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Current Activiti Engine does not support Multiple ServiceTask concurrency orchestration, can not use Activiti in some scenario</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176368#M129498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Make all your tasks async. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem with the join has been currently fixed on master (will be part of 5.16 release).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It's a matter of setting activiti:async="true" on the joining parallel gateway and no need for camel anymore.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 09:17:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176368#M129498</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-05-30T09:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Current Activiti Engine does not support Multiple ServiceTask concurrency orchestration, can not use Activiti in some scenario</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176369#M129499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As far I can see the requirement, you can fully use asynch service task. There is no need to use camel for this purpose.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Even if you need to use camel, you do not need to generate routes. A fixed static route seems to be suitable.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 13:21:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/current-activiti-engine-does-not-support-multiple-servicetask/m-p/176369#M129499</guid>
      <dc:creator>smirzai</dc:creator>
      <dc:date>2014-10-21T13:21:30Z</dc:date>
    </item>
  </channel>
</rss>

