<?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: Activiti with no forms and modelling machines as users in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129007#M90642</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okay, I get the use-case now. What I would suggest (the simplest possible, work from there) is using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) A process in activiti, with a non-start event, after the start-event there are different receive-tasks. Each receive-task corresponds to a certain machine that needs to do something, they are connected in the right order you can't to have the job executed (and perhaps have some gateways in between, depending on job state) -&amp;gt; e.g. &lt;/SPAN&gt;&lt;CODE&gt;&amp;lt;receiveTask id="machineAWork" /&amp;gt;&lt;/CODE&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Once the native UI create a new Job, call our API (startProcessByKey("key", nativeJob.getUniqueId()), passing in the job's unique ID as a business-key. You now have a process started for the "job".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) Your native poller on machine A DOES NOT POLL the native db, rather, it uses runtimeService.createExecutionQuery().activityId("machineAWork").list() and takes one of those processes and executes it. The native job can be looked up by using the businessKey provided in the process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) After machine A has executed the process, it calls out API: runtimeService.signal(processInstance.getId()) - signaling the process for which the action has been performed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;5) The process is now up to date with the execution-state of the job. Activiti will move on to the next activity in the process, e.g. "machineBWork".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;6) Poller on machine B (exactly the same as on machine a) checks for processes waiting in activity "machineBWork"…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you require user-intervention, the processes can include UserTasks as well. This approach puts the order and actual execution control in the hands of the process, rather than in the hands of your native DB, which is what you need.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jul 2013 11:26:35 GMT</pubDate>
    <dc:creator>frederikherema1</dc:creator>
    <dc:date>2013-07-19T11:26:35Z</dc:date>
    <item>
      <title>Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129004#M90639</link>
      <description>Hi,Apologies for writing a long mail &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://migration33.stage.lithium.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;.We are in pursuit of building an enterprise application that utilizes the power of activiti. But there's a lot of dilema in our mind.Here's what is currently available :1. There are jobs that need to be scheduled. The jobs are executed on multiple web clients</description>
      <pubDate>Fri, 19 Jul 2013 06:21:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129004#M90639</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-07-19T06:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129005#M90640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If I understand correclty, the "polling" part will be written outside of activiti and will notify activiti, once new "job" should be created/executed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't know up front how many jobs will be triggered from the "polling", I think it's best to model this with a message-start event. This way, only a process is started when you send a message. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you would be using an approach with a process with a non-start-event and a receive-task, it would be a different scenario: At some point in time, you decide a new process should be started. You call the startProcessByKey(…) and the process waits in the "receive-task". After a while, your polling-machanism received an event to do something with "job X". You correlate the job-id with the process (e.g. using business-key or variable) and call a signal(processId). This triggers the process to move on.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 06:51:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129005#M90640</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-07-19T06:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129006#M90641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Frederik,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your prompt response. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Currently yes we have the polling for the first machine outside activiti (will refer to this as native poller hereon). Basically our poller is nothing but a jsp which keep polling the native db using ajax looking for a certain flag. So the result could bring say 10 jobs from the queue but machine 1 will pick-up 1 job by LIFO. Assuming that I use a message-start event what do I do to know the process can proceed. The "native poller" has marked flag saying that the job on Machine A is now done and pick this up. But this update in not in activiti db. We are very new to activiti and this could probably something very simple. But believe me we are confused.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you understand our existing system just help us started with a best approach on how we can leverage activiti. To re-iterate currently &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Native UI add a 10 new jobs in native DB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Machine A poller picks up just 1 of the 10 jobs in queue for processing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Machine A completes the job and updates Native DB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. and now how should be the activiti process? If you suggest this is a message start event?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Just help us the process flow for 2 machines A to B if you could. Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also one thing we want to be sure is that the whole process cycle - from machine 1 to the last machine must be in sync with the states in activiti at each stage.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 09:36:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129006#M90641</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-07-19T09:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129007#M90642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Okay, I get the use-case now. What I would suggest (the simplest possible, work from there) is using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) A process in activiti, with a non-start event, after the start-event there are different receive-tasks. Each receive-task corresponds to a certain machine that needs to do something, they are connected in the right order you can't to have the job executed (and perhaps have some gateways in between, depending on job state) -&amp;gt; e.g. &lt;/SPAN&gt;&lt;CODE&gt;&amp;lt;receiveTask id="machineAWork" /&amp;gt;&lt;/CODE&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Once the native UI create a new Job, call our API (startProcessByKey("key", nativeJob.getUniqueId()), passing in the job's unique ID as a business-key. You now have a process started for the "job".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) Your native poller on machine A DOES NOT POLL the native db, rather, it uses runtimeService.createExecutionQuery().activityId("machineAWork").list() and takes one of those processes and executes it. The native job can be looked up by using the businessKey provided in the process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;4) After machine A has executed the process, it calls out API: runtimeService.signal(processInstance.getId()) - signaling the process for which the action has been performed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;5) The process is now up to date with the execution-state of the job. Activiti will move on to the next activity in the process, e.g. "machineBWork".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;6) Poller on machine B (exactly the same as on machine a) checks for processes waiting in activity "machineBWork"…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you require user-intervention, the processes can include UserTasks as well. This approach puts the order and actual execution control in the hands of the process, rather than in the hands of your native DB, which is what you need.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 11:26:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129007#M90642</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-07-19T11:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129008#M90643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Lovely! .. Thanks. Let me put our thinking hats. Correlate. In case anything I will get back. Once again thanks for the support.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 13:17:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129008#M90643</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-07-19T13:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129009#M90644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In point (2) when you say we have a process started for the "job" would there be anything like a "wait" consuming memory - like db polling wait tasks? Or it is just a state stored in activiti db?. In our application we can keep say 100 jobs added in advance through the native UI.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As per your suggestions would the process start as soon as the job is added?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The process for a single job looks like &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;–&amp;gt;Machine A—&amp;gt;Machine B&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;–&amp;gt;Machine C—&amp;gt;Machine D&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;–&amp;gt;Machine E—&amp;gt;Machine F&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Job 1 starts at A, C and E at once (process variables will be different though)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Machine D task will proceed to task F only on completing tasks received from B and C&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So coming back I have 100 jobs (ID 1 to 100) added through Native UI 5 days back but I am processing say jobs (ID 15-20) (5 process instances) today. Would suggestion in Point (2) be an overkill? We need something that will somehow start the instance only when the job comes into play. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. In the cycling of a single job in say 20 machines (each processing 1 job at a time) we would expect max 20 jobs running parallely i.e 20 process instances started parallely. Would it be a memory overkill? or its not a big deal? There is a possibility of each job running different processs design (accept the starting task).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jul 2013 15:36:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129009#M90644</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-07-20T15:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129010#M90645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've totally lost you on what the scope of a process is and what you're doing yourself. Also the term "job" doesn't help when considering activiti also uses jobs &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://connect.hyland.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have a process-diagram of the process you're using?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 09:10:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129010#M90645</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-07-24T09:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129011#M90646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The process diagram is attached (rename file to .jpg). Though the diagram refers the term "job" I will refer to in the explanation as "product" and the work to be done at each machine as "task".&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- The overall objective to develop a "product" - say we are making a computer &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- The making of computer is split into "tasks" to be completed at each machine - say assemble CPU, connect CDR, connect mouse etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- In the diagram we have 16 such machines&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Adding "tasks" for a product is a procedure that could be done much in advance from Native UI. Its loading on machines will happen by LIFO. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Machine A, C, E, G… till O (left column) will get tasks at the same time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Only when machine A completes it job Machine B will start the work. Likewise C-&amp;gt;D, E-&amp;gt;F….O-&amp;gt;P&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- Also for machine D task will load once B and C have completed their tasks. Same dependency goes for F, H etc..till P&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- The product will be ready at P&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My queries :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Would bringing up the process instance when we add tasks in advance be right? Would it be simply consuming some memory?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Also is the receiveTask method for each machine be the right way considering 8 machines get tasks at the same time?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are new to Activiti. Pointers will do. Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 08:57:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129011#M90646</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-07-25T08:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129012#M90647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The model like it is right now is not correct. If this model is executed you have a lot of tasks running in parallel and if for example task B is completed the activity for task D is started, but when task C is completed, again a new activity for task D will be started. So you may want to look into the process semantics a bit more.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. No that shouldn't be an issue&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. See my comment before, it's not modelled correctly now, so really hard to say something about this.&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>Thu, 25 Jul 2013 09:41:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129012#M90647</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2013-07-25T09:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129013#M90648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the update. We are new to activiti but are sure that it could help us with the sequencing of our process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you understand the usecase (what is expected) could you suggest atleast some pointer on how the parallel tasks could be modelled/handled? Would receiveTask still hold good? &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jul 2013 14:41:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129013#M90648</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-07-25T14:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129014#M90649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you want to have parallel tasks, you should add another parralel-gateway, which "joins" all forked parallel paths. So you should have outgoing sequence-flows from the receive-tasks to one and the same gateway. When all parallel paths have been completed, the outgoing flow of that new "joining" gateway will be executed.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 07:39:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129014#M90649</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-08-05T07:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129015#M90650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Appreciate the support Frederik. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have modified the process based on your inputs. Attached the image with as .txt.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please note that we have only the join gateways and no fork gateways. The tasks that Machine 1, 3, 5 … 15&amp;nbsp; receive are not same. The tasks are uniquely identified by say the machine hostID/hostname so each machine gets tasks designated for it. However we have the join gateways as suggested. Specifically for e.g. before process exec reaches 4 we check whether machine 2 and 3 had both completed their tasks. We just need activiti to govern the flow. The tasks that each machine must receive is pre-defined (with unique ids) and are independent in nature. One last review comments from you and I assure we will take it independently thereon. We thank you for all the support till date.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 12:44:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129015#M90650</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-08-06T12:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129016#M90651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The process you have now will make available receive-tasks machine 1, 3, … , 15 from the moment it starts. All these "machines" will execute the job. After machine 1 is completed AND machine 3 is completed, a receive-task for machine 4 is available. As soon as 4 is done and 5, 6 will become available. And it goes on in that order. So jobs 1, 3, …, 15 will be executed IN A RANDOM ORDER and jobs 2, 4, … will be executed in that order (with potentially an odd machine task in between).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 12:57:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129016#M90651</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-08-06T12:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129017#M90652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Fine. Will put this to execution and test now. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just one thing when you say All "machines" will execute the job. So it does not necessarily mean&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;that a copy of the "same" job is received by all "machines" right? So it could be for e.g. say considering an "Add User" usecase (task) and machine 1 is add User with ID 1 and machine 3 is adding a "different" User with ID3?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 14:38:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129017#M90652</guid>
      <dc:creator>vrootid4</dc:creator>
      <dc:date>2013-08-06T14:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti with no forms and modelling machines as users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129018#M90653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, all machines can take the job, but only one can take it&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:20:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-with-no-forms-and-modelling-machines-as-users/m-p/129018#M90653</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2013-08-08T08:20:00Z</dc:date>
    </item>
  </channel>
</rss>

