<!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">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;">
    self-transition to node with timer crashes in 4.3
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/gelos">O S</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/538603#538603">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>just as the name suggests. used to work in 4.0</p><p>issue is with duplicate entry in the execution DB - seems like the order of DB statement execution isn't right</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>any ideas of a workaround would be appreciated (adding an interim node and transitioning to it and then back is not desireable)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>thanks in advance for ideas,</p><p>gelos</p><p>--------------------------------------------------------------------------------------------------------------------------------------</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>modified unit test shipped with 4.3 - TimerTransition</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span>&lt;process name="TimerTransition" xmlns="</span><a class="jive-link-external-small" href="http://jbpm.org/4.3/jpdl" target="_blank">http://jbpm.org/4.3/jpdl</a><span>"&gt;</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;start g="19,50,48,48"&gt;<br/>&#160;&#160;&#160; &lt;transition to="guardedWait" /&gt;<br/>&#160; &lt;/start&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;state name="guardedWait" g="98,46,127,52"&gt;<br/>&#160;&#160;&#160; &lt;transition name="go on" to="next step" g="-16,-17"/&gt;<br/>&#160;&#160;&#160; &lt;transition name="timeout" to="escalation" g="-43,-16"&gt;<br/>&#160;&#160;&#160;&#160;&#160; &lt;timer duedate="1 hour" /&gt; <br/>&#160;&#160;&#160; &lt;/transition&gt;<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; &lt;transition name="selft" to="guardedWait" /&gt;<br/>&#160; &lt;/state&gt;<br/>&#160; <br/>&#160; &lt;state name="next step" g="283,46,83,53"/&gt;<br/>&#160; &lt;state name="escalation" g="118,140,88,52" /&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&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>public void testTimerTransitionContinueBeforeTimerFires() {<br/>&#160;&#160;&#160; ProcessInstance processInstance = executionService.startProcessInstanceByKey("TimerTransition");<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; String executionId = processInstance.findActiveExecutionIn("guardedWait").getId();</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; // the next line will crash - duplicate row in the DB</p><p>&#160;&#160;&#160; executionService.signalExecutionById(executionId, "selft");<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; executionService.signalExecutionById(executionId, "go on");<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; processInstance = executionService.findProcessInstanceById(processInstance.getId());<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; assertTrue(processInstance.isActive("next step"));</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160;&#160; List&lt;Job&gt; jobs = managementService.createJobQuery()<br/>&#160;&#160;&#160;&#160;&#160; .processInstanceId(processInstance.getId())<br/>&#160;&#160;&#160;&#160;&#160; .list();<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; assertEquals(new ArrayList&lt;Job&gt;(), new ArrayList&lt;Job&gt;(jobs));<br/>&#160; }</p><p>}</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/538603#538603">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>