<!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="http://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;">
    ReceiveTaskHandler handling multiple process intances with the same message-id
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/mscetin">Melih Cetin</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/617949#617949">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>BPMN2 JUnit test for BPMN2-ReceiveTask is implemented as </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="padding-left: 30px;">ksession.getWorkItemManager().registerWorkItemHandler("Receive Task", receiveTaskHandler);</p><p style="padding-left: 30px;">...</p><p style="padding-left: 30px;">receiveTaskHandler.messageReceived("HelloMessage", "Hello john!");</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I tried to use ReceiveTaskHandler class in a project to receive a notification from an external system for a specific process-instance and resume the process upon receipt of the message. I could not figure out how to specify the process-instance for which the received message is applicable.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>JUinit test works fine as there is only one process instance in the session during the execution of this test. The source code for <span style="font-family: courier new,courier;">ReceiveTaskHandler</span> is: </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: courier new,courier;">public class ReceiveTaskHandler implements WorkItemHandler {</span></p><p>&#160;&#160;&#160; </p><p><span style="font-family: courier new,courier; color: #000080;">&#160;&#160;&#160; // TODO: use correlation instead of message id</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; private Map&lt;String, Long&gt; waiting = new HashMap&lt;String, Long&gt;();</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; ...</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; public void executeWorkItem(WorkItem workItem, WorkItemManager manager) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; String messageId = (String) workItem.getParameter("MessageId");</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; waiting.put(messageId, workItem.getId());</span></p><p><span style="color: #000080;"><strong style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; // If waiting map previously contained a mapping for messageId, the old value is replaced !!!</strong></span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p>&#160;&#160;&#160; </p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; public void messageReceived(String messageId, Object message) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; Long workItemId = waiting.get(messageId);</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (workItemId == null) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return;</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; Map&lt;String, Object&gt; results = new HashMap&lt;String, Object&gt;();</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; results.put("Message", message);</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; ksession.getWorkItemManager().completeWorkItem(workItemId, results);</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; ...</span></p><p><span style="font-family: courier new,courier;">}</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: arial,helvetica,sans-serif;">The comment of </span><span style="font-family: courier new,courier; color: #000080;">// TODO: use correlation instead of message id </span><span style="font-family: arial,helvetica,sans-serif;">at the top of the source file&#160; also gave the impression that the implementation is not complete. As an interim solution, I decided to extend </span><span style="font-family: courier new,courier;">ReceiveTaskHandler </span><span style="font-family: arial,helvetica,sans-serif;">class as follows:</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: courier new,courier;">public class ReceiveTaskHandler extends org.jbpm.bpmn2.handler.ReceiveTaskHandler {</span></p><p>&#160;&#160;&#160; </p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; private Map&lt;String, Long&gt; waiting = new HashMap&lt;String, Long&gt;();</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; private KnowledgeRuntime ksession;</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; public ReceiveTaskHandler(KnowledgeRuntime ksession) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160; super(ksession);</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160; this.ksession = ksession;</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; private String constructKey(long&#160;&#160; processInstanceId, String messageId) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; return processInstanceId + "|" + messageId;</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p>&#160;&#160;&#160; </p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; @Override</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; public void executeWorkItem(WorkItem workItem, WorkItemManager manager) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; long processInstanceId = workItem.getProcessInstanceId();</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; String messageId = (String) workItem.getParameter("MessageId");</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; waiting.put(constructKey(processInstanceId, messageId), workItem.getId());</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; // If waiting map previously contained a mapping for messageId, the old value is replaced !!!</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p>&#160;&#160;&#160; </p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; @Override</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; public void messageReceived(String messageId, Object message) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; throw new UnsupportedOperationException(</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "messageReceived(String messageId, Object message) method is not supported. " +</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; "Instead use messageReceived(long, String, Object) method" );</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p>&#160;&#160;&#160; </p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; public void messageReceived(long processInstanceId, String&#160; messageId, Object message) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; Long workItemId = waiting.get(constructKey(processInstanceId, messageId));</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (workItemId == null) {</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return;</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; Map&lt;String, Object&gt; results = new HashMap&lt;String, Object&gt;();</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; results.put("Message", message);</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160; ksession.getWorkItemManager().completeWorkItem(workItemId, results);</span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; }</span></p><p><span style="font-family: courier new,courier;">}</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: arial,helvetica,sans-serif;">I was wondering if "Receive Task" is the right task to use for waiting an external notification. If yes, then can any core jBPM </span>contributor <span style="font-family: arial,helvetica,sans-serif;">review the extension that I used locally and consider adding it to the next release of jBPM.</span></p></div>

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


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

</div>

</body>
</html>