<?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 Access external Activit workflows in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152729#M107360</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is some documentation about accessing sub workflows (subprocesses) but nothing about how you are able to call another Activti workflow (different BPMN file) in the same environment. Is this possible?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have two different workflows, which can exist standalone, but the first workflow should be able to call the second workflow in certain conditions. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Information on the call activit: &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"A call activity is a regular activity, that requires a calledElement that references a process definition by its key. In practice, this means that the id of the process is used in the calledElement.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;callActivity id="callCheckCreditProcess" name="Check credit" calledElement="checkCreditProcess" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that the process definition of the subprocess is resolved at runtime. This means that the subprocess can be deployed independently from the calling process, if needed." This means it can only be the subprocess key and not an external process key right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Dec 2013 11:06:15 GMT</pubDate>
    <dc:creator>drams</dc:creator>
    <dc:date>2013-12-12T11:06:15Z</dc:date>
    <item>
      <title>Access external Activit workflows</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152729#M107360</link>
      <description>There is some documentation about accessing sub workflows (subprocesses) but nothing about how you are able to call another Activti workflow (different BPMN file) in the same environment. Is this possible?We have two different workflows, which can exist standalone, but the first workflow should be a</description>
      <pubDate>Thu, 12 Dec 2013 11:06:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152729#M107360</guid>
      <dc:creator>drams</dc:creator>
      <dc:date>2013-12-12T11:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Access external Activit workflows</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152730#M107361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A call-activity allows you to set a key of a process-definition which you want to see started. If the parent-process reaches the call-activity, it will fetch the LATEST process-definition with that key and start a new process-instance of that definition. When that child process is completed, the outgoing sequence flow from the call-activity is taken.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a good way to start the second process from within the first process. Offcourse, if you need actual "communication" between the parent and child, consider using message-events or using the API from inside the processes, using service-task, tasklisteners, execution-listeners. You can get hold of the EngineServices based on the DelegateTask/DelegateExecution you get passed on in those classes, allwoing you to do stuff like "engineServices.getRuntimeService().signal(childProcessInstanceId)".&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Dec 2013 08:32:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152730#M107361</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2013-12-13T08:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Access external Activit workflows</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152731#M107362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; We have two Tomcat servers running their own Activiti engine\workflows and they share the same database. Tomcat A needs to start a process in Tomcat B, what is the best way to implement this? BTW - The client will not allow rest. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 16:14:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152731#M107362</guid>
      <dc:creator>bbwilliams88</dc:creator>
      <dc:date>2014-07-01T16:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: Access external Activit workflows</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152732#M107363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;One possibility ( I do not say the best - it depends on your requirements + ….):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- run JobExecutor only on one tomcat (e.g tomcat B). Make call activity asynchronous.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 06:08:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/access-external-activit-workflows/m-p/152732#M107363</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2014-07-02T06:08:25Z</dc:date>
    </item>
  </channel>
</rss>

