<!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;">
    Persistence and Transaction Management
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/mpiraccini">Marco Piraccini</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/613033#613033">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 Guys, </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I have a very strange behaviour with JBPM5.1 and the persistence. </p><p>I do not specify the TransactionManager in the Environment, but i set only the EntityManager. That seems to be correct, looking at the documentation (see 7.1.3 - Configuring Persistence). </p><p>My persistence unit is configured in that way:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;persistence-unit name="org.jbpm.persistence.jpa" transaction-type="RESOURCE_LOCAL"&gt;</p><p>&#160;&#160; &lt;class&gt;org.drools.persistence.info.SessionInfo&lt;/class&gt;</p><p>&#160;&#160; &lt;class&gt;org.jbpm.persistence.processinstance.ProcessInstanceInfo&lt;/class&gt;</p><p>&#160;&#160; &lt;class&gt;org.drools.persistence.info.WorkItemInfo&lt;/class&gt;</p><p>&#160;&#160; &lt;properties&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.hbm2ddl.auto" value="create-drop" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.connection.username" value="xx" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.connection.password" value="xx" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.show_sql" value="true" /&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.connection.url" value="jdbc:hsqldb:mem:test" /&gt;&#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; </p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.max_fetch_depth" value="3"/&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="hibernate.show_sql" value="true"/&gt;</p><p>&#160;&#160; &lt;/properties&gt;</p><p>&lt;/persistence-unit&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The strange behaviour is that, when I try to run the code from a junit test using:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Environment env = KnowledgeBaseFactory.newEnvironment();</p><p>env.set( EnvironmentName.ENTITY_MANAGER_FACTORY, emf );</p><p>JPAKnowledgeService.newStatefulKnowledgeSession(knowledgeBase, getKnowledgeSessionConfiguration(),env);</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I get this NPE:</p><p>18:39:06,775 ERROR [persistence.SingleSessionCommandService] Could not commit session</p><p>java.lang.NullPointerException</p><p>&#160;&#160;&#160; at org.drools.persistence.jta.JtaTransactionManager.getStatus(JtaTransactionManager.java:197)</p><p>&#160;&#160;&#160; at org.drools.persistence.jta.JtaTransactionManager.begin(JtaTransactionManager.java:150)</p><p>&#160;&#160;&#160; at org.drools.persistence.SingleSessionCommandService.&lt;init&gt;(SingleSessionCommandService.java:120)</p><p>&#160;&#160;&#160; at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)</p><p>&#160;&#160;&#160; at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)</p><p>&#160;&#160;&#160; at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)</p><p>&#160;&#160;&#160; at java.lang.reflect.Constructor.newInstance(Constructor.java:513)</p><p>&#160;&#160;&#160; at org.drools.persistence.jpa.KnowledgeStoreServiceImpl.buildCommanService(KnowledgeStoreServiceImpl.java:116)</p><p>&#160;&#160;&#160; at org.drools.persistence.jpa.KnowledgeStoreServiceImpl.newStatefulKnowledgeSession(KnowledgeStoreServiceImpl.java:54)</p><p>&#160;&#160;&#160; at org.drools.persistence.jpa.JPAKnowledgeService.newStatefulKnowledgeSession(JPAKnowledgeService.java:122)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>There are some quite strange issues about that:</p><p>1) Why it uses the JtaTransactionManager even if the transaction-type is "RESOURCE_LOCAL"?</p><p>2) If I take a look at the JtaTransactionManager code, the NPE occurs because the UserTransaction is null. That's true, since no-one creates it! Indeed, looking at the SingleSessionCommandService method, the JtaTransactionManager is created in that way:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>this.txm = new JtaTransactionManager( env.get( EnvironmentName.TRANSACTION ),</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;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; env.get( EnvironmentName.TRANSACTION_SYNCHRONIZATION_REGISTRY ),</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;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; tm );</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>...so, I have to specify the EnvironmentName.TRANSACTION to avoid the NPE? If so, why?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Thank you, </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Marco. </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/613033#613033">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>