<?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: Start SubProcess using a Signal? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85278#M57510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try signaling the exact execution instead of the process-instance… Try querying the task and use the executionId you get from there.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Oct 2012 09:27:40 GMT</pubDate>
    <dc:creator>frederikherema1</dc:creator>
    <dc:date>2012-10-24T09:27:40Z</dc:date>
    <item>
      <title>Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85272#M57504</link>
      <description>Hello,my Process should contain some subprocesses that can be started at any time under given conditions.The Task that is "triggering" the Sub-Process needs to remain active. (Therefore i can not use a normal flow to thesubprocess, because this flow is only executed if the task is completed)So i tri</description>
      <pubDate>Tue, 23 Oct 2012 13:03:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85272#M57504</guid>
      <dc:creator>dognose</dc:creator>
      <dc:date>2012-10-23T13:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85273#M57505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can't you add a non-interupting signal-boundary event on your task, and have this flow to a call-activity or subprocess? because of the "cancelActivity" being true, the task WILL NOT end…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;boundaryEvent id="boundary" attachedToRef="task" cancelActivity="false"&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;signalEventDefinition signalRef="invokeSubProcessC"/&amp;gt;&lt;BR /&gt;&amp;lt;/boundaryEvent&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:14:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85273#M57505</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2012-10-23T15:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85274#M57506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Maybe i'm a bit confused about the BoundarySignalEvents.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I Always thought the "Other Way round" and assumed, that a SignalBoundaryEvent is &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt; The trigger, but the handler,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;so you can "stop" (or update) a task, if conditions change. So a signal is triggered somewhere in the process and the BoundaryEvent &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;will catch that Signal even when the associated Task is already running.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(Because it also has the same look like a ImmediateSignalCatching event and looks different than a Throwing Event.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To go with a Example from the Docu:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[img]&lt;/SPAN&gt;&lt;A href="http://www.activiti.org/userguide/images/bpmn.boundary.signal.event.png" rel="nofollow noopener noreferrer"&gt;http://www.activiti.org/userguide/images/bpmn.boundary.signal.event.png&lt;/A&gt;&lt;SPAN&gt;[/img]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here i Assume that the task will be active until the "Alert" Signal is triggered from Somewhere else - right?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And thats basically …&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I start to understand: You mean i should simple throw the signal "Alert" inside the "do Something" task in Order to proceed with the flow "on Alert".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Well, i dunno if theres a difference to my current solution, which looks (simplified) like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[img]&lt;/SPAN&gt;&lt;A href="http://www.abload.de/img/capturemrsil.png" rel="nofollow noopener noreferrer"&gt;http://www.abload.de/img/capturemrsil.png&lt;/A&gt;&lt;SPAN&gt;[/img]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Both cases require the "signal" to be thrown programmatically I assume?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ofc, even if those mehtods are funcitonaly equal, yours is clearer to understand, because you can see, where the signal's coming from.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(if you dont throw the same signal at other tasks)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 16:06:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85274#M57506</guid>
      <dc:creator>dognose</dc:creator>
      <dc:date>2012-10-23T16:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85275#M57507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, as far as I understand you reasoning it is correct. The task will remain active until the signal is thrown.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 22:28:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85275#M57507</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-10-23T22:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85276#M57508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;But if you use the "cancelActivity=false" on the boundary-event, the task WILL NOT be cancelled once the signal is thrown.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example in our test cases. Consider this process, a task with a signal boundary-event on it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;definitions id="definitions" xmlns="&lt;A href="http://www.omg.org/spec/BPMN/20100524/MODEL" rel="nofollow noopener noreferrer"&gt;http://www.omg.org/spec/BPMN/20100524/MODEL&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp; xmlns:activiti="&lt;A href="http://activiti.org/bpmn" rel="nofollow noopener noreferrer"&gt;http://activiti.org/bpmn&lt;/A&gt;" targetNamespace="Examples"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;signal id="alertSignal" name="alert" /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;process id="nonInterruptingSignalEvent"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;startEvent id="theStart" /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequenceFlow id="flow1" sourceRef="theStart" targetRef="theUserTask" /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="theUserTask" name="My User Task" /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;boundaryEvent id="signal" attachedToRef="theUserTask" cancelActivity="false"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;signalEventDefinition signalRef="alertSignal" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/boundaryEvent&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequenceFlow id="flow2" sourceRef="theUserTask" targetRef="theEnd" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;endEvent id="theEnd" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequenceFlow id="flow3" sourceRef="signal" targetRef="theUserTask2" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="theUserTask2" name="My Second User Task" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequenceFlow id="flow4" sourceRef="theUserTask2" targetRef="theEnd2" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;endEvent id="theEnd2" /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;/process&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt;/definitions&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;And, after signaling the process, the task is still present and signal flow is taken as well:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;@Deployment&lt;BR /&gt;&amp;nbsp; public void testNonInterruptingSignal() {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProcessInstance pi = runtimeService.startProcessInstanceByKey("nonInterruptingSignalEvent");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; List&amp;lt;Task&amp;gt; tasks = taskService.createTaskQuery().processInstanceId(pi.getProcessInstanceId()).list();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; assertEquals(1,&amp;nbsp; tasks.size());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Task currentTask = tasks.get(0);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; assertEquals("My User Task", currentTask.getName());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; runtimeService.signalEventReceived("alert");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tasks = taskService.createTaskQuery().processInstanceId(pi.getProcessInstanceId()).list();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; assertEquals(2,&amp;nbsp; tasks.size());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (Task task : tasks) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!task.getName().equals("My User Task") &amp;amp;&amp;amp; !task.getName().equals("My Second User Task")) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fail("Expected: &amp;lt;My User Task&amp;gt; or &amp;lt;My Second User Task&amp;gt; but was &amp;lt;" + task.getName() + "&amp;gt;.");&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&lt;BR /&gt;…&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Source: org.activiti.engine.test.bpmn.event.signal.SignalEventTest&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 06:15:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85276#M57508</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2012-10-24T06:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85277#M57509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;helpfull post&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;basically that was the Function i assumed. However this way, it won't work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the exception: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;[org.activiti.engine.impl.interceptor.CommandContext] (http-localhost-127.0.0.1-8090-11) Error while closing command context: org.activiti.engine.ActivitiException: Execution '1008' has not subscribed to a signal event with name 'startSubProcessAfromX'.&lt;BR /&gt; at org.activiti.engine.impl.cmd.SignalEventReceivedCmd.execute(SignalEventReceivedCmd.java:52) [activiti-engine-5.10.jar:5.10]&lt;BR /&gt; at org.activiti.engine.impl.cmd.SignalEventReceivedCmd.execute(SignalEventReceivedCmd.java:29) [activiti-engine-5.10.jar:5.10]&lt;BR /&gt;…&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;currently i designed it like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[img]&lt;/SPAN&gt;&lt;A href="http://download.dog-net.org/easyshare/pictures/20121024110950.jpg" rel="nofollow noopener noreferrer"&gt;http://download.dog-net.org/easyshare/pictures/20121024110950.jpg&lt;/A&gt;&lt;SPAN&gt;[/img]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;using 2 Signals startSubProcessAfromY and startSubProcessAfromX&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;XML:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;definitions …&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;signal id="startSubProcessAfromX" name="startSubProcessAfromX"&amp;gt;&amp;lt;/signal&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;signal id="startSubProcessAfromY" name="startSubProcessAfromY"&amp;gt;&amp;lt;/signal&amp;gt;&lt;BR /&gt;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp; &amp;lt;process id="processP" name="processP"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="TaskX" …&amp;gt;&amp;lt;/userTask&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;boundaryEvent id="boundarysignal1" cancelActivity="false" attachedToRef="TaskX"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;signalEventDefinition signalRef="startSubProcessAfromX"&amp;gt;&amp;lt;/signalEventDefinition&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/boundaryEvent&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;userTask id="TaskY" …&amp;gt;&amp;lt;/userTask&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;boundaryEvent id="boundarysignal2" cancelActivity="false" attachedToRef="TaskY"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;signalEventDefinition signalRef="startSubProcessAfromY"&amp;gt;&amp;lt;/signalEventDefinition&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/boundaryEvent&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequenceFlow id="flow34" name="" sourceRef="boundarysignal1" targetRef="exclusivegateway1"&amp;gt;&amp;lt;/sequenceFlow&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;sequenceFlow id="flow35" name="" sourceRef="boundarysignal2" targetRef="exclusivegateway1"&amp;gt;&amp;lt;/sequenceFlow&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; …&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;The Task themselves are made of a form, where a button "triggers" the signal:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;public void triggerSubProcessAButtonClicked(BusinessProcess businessProcess){&lt;BR /&gt;&amp;nbsp; …&lt;BR /&gt;&amp;nbsp; runtimeService.signalEventReceived("startSubProcessAfromX", businessProcess.getProcessInstanceId());&lt;BR /&gt;&amp;nbsp; …&amp;nbsp; &lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;And exactly at this line, the exception is thrown. (And yes, i'm definitly triggering The Signal "…fromX" inside Task X)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Only difference is that i just send the signal to the current instance, not to all instances.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ps.: If the above code contains typos and/or case-issues - they are not there i just replaced the names for better understanding &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 09:19:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85277#M57509</guid>
      <dc:creator>dognose</dc:creator>
      <dc:date>2012-10-24T09:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85278#M57510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try signaling the exact execution instead of the process-instance… Try querying the task and use the executionId you get from there.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 09:27:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85278#M57510</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2012-10-24T09:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Start SubProcess using a Signal?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85279#M57511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Try signaling the exact execution instead of the process-instance… Try querying the task and use the executionId you get from there.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: Should have tried that – works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;//send signal to current task only.&lt;BR /&gt;String taskId = Helper.getContextHelper().getParameter(RequestConstants.TASK_ID_PARAMETER_NAME);&lt;BR /&gt;runtimeService.signalEventReceived(TaskConstants.TRIGGER_SUBPROCESS_SIGNAL_NAME, taskId);&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Sir ThxAlot checked in at forums.activiti.org :ugeek:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 09:43:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/start-subprocess-using-a-signal/m-p/85279#M57511</guid>
      <dc:creator>dognose</dc:creator>
      <dc:date>2012-10-24T09:43:47Z</dc:date>
    </item>
  </channel>
</rss>

