<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    jbpm engine is generating 4 tasks instead of just one !!
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/bardelman">Feki Ahmed</a> in <i>jBPM Development</i> - <a href="https://community.jboss.org/message/786819#786819">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi,</p><p>i'm using jbpm 5.0.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>i ve a simple process with 2 human-tasks for 2 different users, when i try to get each user tasks with this method : </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>public static List &lt;TaskSummary&gt; getAssignedTasks(String idRef) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;connect();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;List&lt;TaskSummary&gt; tasks = null;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;try {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;BlockingTaskSummaryResponseHandler responseHandler = new BlockingTaskSummaryResponseHandler();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;client.getTasksOwned(idRef, "en-UK", responseHandler);</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; tasks = responseHandler.getResults();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} catch (Throwable t) {</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;t.printStackTrace();</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;return tasks;</p><p>&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;}</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>i got 4 tasks instead of just one :</p><p>tasks list : [org.jbpm.task.query.TaskSummary@cf54f3e6, org.jbpm.task.query.TaskSummary@cf54f3e7, org.jbpm.</p><p>task.query.TaskSummary@639962e7, org.jbpm.task.query.TaskSummary@639962e8]</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Sometimes i get just one task but when i complete it i get 4 tasks with status "completed".</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This seems as a bug in the jbpm engine but it doesn't happen with all processes ,i ve 2 processes and this problem only happens in one of them : this one : </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt; </p><p>&lt;definitions id="Definition"</p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; targetNamespace="</span><a class="jive-link-external-small" href="http://www.jboss.org/drools" target="_blank">http://www.jboss.org/drools</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; typeLanguage="</span><a class="jive-link-external-small" href="http://www.java.com/javaTypes" target="_blank">http://www.java.com/javaTypes</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; expressionLanguage="</span><a class="jive-link-external-small" href="http://www.mvel.org/2.0" target="_blank">http://www.mvel.org/2.0</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns="</span><a class="jive-link-external-small" href="http://www.omg.org/spec/BPMN/20100524/MODEL" target="_blank">http://www.omg.org/spec/BPMN/20100524/MODEL</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://www.omg.org/spec/BPMN/20100524/MODEL" target="_blank">http://www.omg.org/spec/BPMN/20100524/MODEL</a><span> BPMN20.xsd"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns:g="</span><a class="jive-link-external-small" href="http://www.jboss.org/drools/flow/gpd" target="_blank">http://www.jboss.org/drools/flow/gpd</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns:bpmndi="</span><a class="jive-link-external-small" href="http://www.omg.org/spec/BPMN/20100524/DI" target="_blank">http://www.omg.org/spec/BPMN/20100524/DI</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns:dc="</span><a class="jive-link-external-small" href="http://www.omg.org/spec/DD/20100524/DC" target="_blank">http://www.omg.org/spec/DD/20100524/DC</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns:di="</span><a class="jive-link-external-small" href="http://www.omg.org/spec/DD/20100524/DI" target="_blank">http://www.omg.org/spec/DD/20100524/DI</a><span>"</span></p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; xmlns:tns="</span><a class="jive-link-external-small" href="http://www.jboss.org/drools" target="_blank">http://www.jboss.org/drools</a><span>"&gt;</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;itemDefinition id="_var1Item" structureRef="String" /&gt;</p><p>&#160; &lt;itemDefinition id="_var2Item" structureRef="String" /&gt;</p><p>&#160; &lt;itemDefinition id="_var3Item" structureRef="Object" /&gt;</p><p>&#160; &lt;itemDefinition id="_var4Item" structureRef="String" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;itemDefinition id="_2-var1Item" structureRef="String" /&gt;</p><p>&#160; &lt;itemDefinition id="_2-var2Item" structureRef="String" /&gt;</p><p>&#160; &lt;itemDefinition id="_2-var3Item" structureRef="Object" /&gt;</p><p>&#160; &lt;itemDefinition id="_2-var4Item" structureRef="String" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;itemDefinition id="_3-var1Item" structureRef="String" /&gt;</p><p>&#160; &lt;itemDefinition id="_3-var2Item" structureRef="String" /&gt;</p><p>&#160; &lt;itemDefinition id="_3-var3Item" structureRef="Object" /&gt;</p><p>&#160; &lt;itemDefinition id="_3-var4Item" structureRef="String" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;process processType="Private" isExecutable="true" id="themasterbossexpl" name="Sample Process" tns:packageName="defaultPackage" &gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; &lt;!-- process variables --&gt;</p><p>&#160;&#160;&#160; &lt;property id="var1" itemSubjectRef="_var1Item"/&gt;</p><p>&#160;&#160;&#160; &lt;property id="var2" itemSubjectRef="_var2Item"/&gt;</p><p>&#160;&#160;&#160; &lt;property id="var3" itemSubjectRef="_var3Item"/&gt;</p><p>&#160;&#160;&#160; &lt;property id="var4" itemSubjectRef="_var4Item"/&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; &lt;!-- nodes --&gt;</p><p>&#160;&#160;&#160; &lt;startEvent id="_1" name="StartProcess" /&gt;</p><p>&#160;&#160;&#160; &lt;userTask id="_2" name="User Task1" &gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;ioSpecification&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInput id="_2_param1Input" name="param1" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInput id="_2_param2Input" name="param2" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInput id="_2_TaskNameInput" name="TaskName" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;inputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInputRefs&gt;_2_param1Input&lt;/dataInputRefs&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInputRefs&gt;_2_param2Input&lt;/dataInputRefs&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInputRefs&gt;_2_TaskNameInput&lt;/dataInputRefs&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/inputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;outputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/outputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/ioSpecification&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;sourceRef&gt;var1&lt;/sourceRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetRef&gt;_2_param1Input&lt;/targetRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;sourceRef&gt;var2&lt;/sourceRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetRef&gt;_2_param2Input&lt;/targetRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetRef&gt;_2_TaskNameInput&lt;/targetRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;assignment&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;from xsi:type="tFormalExpression"&gt;usertask1&lt;/from&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;to xsi:type="tFormalExpression"&gt;_2_TaskNameInput&lt;/to&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/assignment&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;potentialOwner&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;resourceAssignmentExpression&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;formalExpression&gt;jalel&lt;/formalExpression&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/resourceAssignmentExpression&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/potentialOwner&gt;</p><p>&#160;&#160;&#160; &lt;/userTask&gt;</p><p>&#160;&#160;&#160; &lt;userTask id="_3" name="User Task2" &gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;ioSpecification&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInput id="_3_param3Input" name="param3" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInput id="_3_param4Input" name="param4" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInput id="_3_TaskNameInput" name="TaskName" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;inputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInputRefs&gt;_3_param3Input&lt;/dataInputRefs&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInputRefs&gt;_3_param4Input&lt;/dataInputRefs&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dataInputRefs&gt;_3_TaskNameInput&lt;/dataInputRefs&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/inputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;outputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/outputSet&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/ioSpecification&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;sourceRef&gt;var3&lt;/sourceRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetRef&gt;_3_param3Input&lt;/targetRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;sourceRef&gt;var4&lt;/sourceRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetRef&gt;_3_param4Input&lt;/targetRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;targetRef&gt;_3_TaskNameInput&lt;/targetRef&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;assignment&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;from xsi:type="tFormalExpression"&gt;usertask2&lt;/from&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;to xsi:type="tFormalExpression"&gt;_3_TaskNameInput&lt;/to&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/assignment&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/dataInputAssociation&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;potentialOwner&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;resourceAssignmentExpression&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;formalExpression&gt;karim&lt;/formalExpression&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/resourceAssignmentExpression&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/potentialOwner&gt;</p><p>&#160;&#160;&#160; &lt;/userTask&gt;</p><p>&#160;&#160;&#160; &lt;endEvent id="_4" name="End" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;terminateEventDefinition/&gt;</p><p>&#160;&#160;&#160; &lt;/endEvent&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; &lt;!-- connections --&gt;</p><p>&#160;&#160;&#160; &lt;sequenceFlow id="_1-_2" sourceRef="_1" targetRef="_2" /&gt;</p><p>&#160;&#160;&#160; &lt;sequenceFlow id="_2-_3" sourceRef="_2" targetRef="_3" /&gt;</p><p>&#160;&#160;&#160; &lt;sequenceFlow id="_3-_4" sourceRef="_3" targetRef="_4" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;/process&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;bpmndi:BPMNDiagram&gt;</p><p>&#160;&#160;&#160; &lt;bpmndi:BPMNPlane bpmnElement="themasterbossexpl" &gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNShape bpmnElement="_1" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dc:Bounds x="45" y="45" width="48" height="48" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNShape&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNShape bpmnElement="_2" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dc:Bounds x="253" y="69" width="100" height="48" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNShape&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNShape bpmnElement="_3" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dc:Bounds x="500" y="115" width="100" height="48" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNShape&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNShape bpmnElement="_4" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;dc:Bounds x="725" y="177" width="48" height="48" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNShape&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNEdge bpmnElement="_1-_2" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;di:waypoint x="69" y="69" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;di:waypoint x="303" y="93" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNEdge&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNEdge bpmnElement="_2-_3" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;di:waypoint x="303" y="93" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;di:waypoint x="550" y="139" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNEdge&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;bpmndi:BPMNEdge bpmnElement="_3-_4" &gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;di:waypoint x="550" y="139" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;di:waypoint x="749" y="201" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/bpmndi:BPMNEdge&gt;</p><p>&#160;&#160;&#160; &lt;/bpmndi:BPMNPlane&gt;</p><p>&#160; &lt;/bpmndi:BPMNDiagram&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;/definitions&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Thanx for help !</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/786819#786819">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM Development at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2035">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>