<!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 5.3 and Springframework
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/amadets">amadets</a> in <i>jBPM</i> - <a href="https://community.jboss.org/message/764048#764048">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hello,</p><p>I spent a lot of time to solve the problem but still she can not properly configure the environment.</p><p>I'm using:</p><p>Spring framework ver. 3.1.2</p><p>where my ApplicationContext-db is:</p><p>&lt;bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"&gt;</p><p>&#160; *.hbm.xml etc</p><p>&lt;/bean&gt;</p><p>and </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;Bean id = "transactionManager"</p><p>&#160;&#160;&#160; class = "org.springframework.orm.hibernate3.HibernateTransactionManager"&gt;</p><p>&#160;&#160;&#160; &lt;property name="sessionFactory" ref="sessionFactory" /&gt;</p><p>&#160; &lt;/ Bean&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>I use the filter OpenSessionInView coming from Spring. </p><p>The whole environment is set on jboss 7 and PostgreSQL 9.1.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>For this environment wants to connect jbpm5.3. </p><p>In the application I create META-INF/persistence.xml file where I configure:</p><p>&lt;persistence-unit name="org.jbpm.persistence.jpa"&gt;</p><p>&lt;Provider&gt; org.hibernate.ejb.HibernatePersistence &lt;/ provider&gt;</p><p>and</p><p>&lt;property name="hibernate.connection.driver_class" value="org.postgresql.Driver"/&gt;</p><p>&lt;property name="hibernate.connection.url" value="jdbc:postgresql://localhost/mydatabase" /&gt;</p><p>&lt;property name="hibernate.connection.username" value="postgres"/&gt;</p><p>&lt;property name="hibernate.connection.password" value="postgres"/&gt;</p><p>&lt;property name="hibernate.transaction.manager_lookup_class" value="org.jbpm.integration.console.JBPMTransactionManager" /&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>Initializing jbpm code:</p><p>emf = Persistence.createEntityManagerFactory("org.jbpm.persistence.jpa");</p><p>env = KnowledgeBaseFactory.newEnvironment();</p><p>env.set(EnvironmentName.ENTITY_MANAGER_FACTORY, emf);</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>org.jbpm.task.service.TaskService taskService = new org.jbpm.task.service.TaskService (emf, SystemEventListenerFactory.getSystemEventListener ());</p><p>Map &lt;string, Group&gt; groups = new HashMap &lt;string, Group&gt; ();</p><p>&lt;string, User&gt; Map users = new HashMap &lt;string, User&gt; ();</p><p>taskService.addUsersAndGroups (users, groups);</p><p>localTaskService = new LocalTaskService (taskService);</p><p>ksession = JPAKnowledgeService.newStatefulKnowledgeSession (kbase, null, env);</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>SyncWSHumanTaskHandler humanTaskHandler = new SyncWSHumanTaskHandler (new LocalTaskService (taskService), ksession);</p><p>humanTaskHandler.setLocal (true);</p><p>humanTaskHandler.connect ();</p><p>ksession.getWorkItemManager (). registerWorkItemHandler ("Human Task", humanTaskHandler);</p><p>logger = new JPAWorkingMemoryDbLogger (ksession);</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>When the environment and the process are runing, i complete task's (localTaskService.complete(taskId, "user", null) and is stored in the database and only Task (!). </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>why not write to database a sessionInfo, processInstanceInfo etc.. What else do I need to set the whole environment to work?</p><p><span id="result_box" lang="en"><span class="hps">whether it is</span> <span class="hps">possible to set</span> <span class="hps">one</span> <span class="hps">transaction</span> <span class="hps">for the whole environment?</span></span></p><p>Additionally, displayed on the console:</p><p>AbstractEntityManagerImpl] Calling joinTransaction () on a non JTA EntityManager.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Additionally, when I set a whole as it is described in:</p><p><a class="jive-link-external-small" href="http://docs.jboss.org/jbpm/v5.3/userguide/ch.integration.html" target="_blank">http://docs.jboss.org/jbpm/v5.3/userguide/ch.integration.html</a><span> # d0e7631</span></p><p>This environment does not start and the message is</p><p>no active Transaction with SingleSessionCommandService (152: persistenceContext.joinTransaction () <span> ;) </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> <span class="short_text" id="result_box" lang="en"><span class="hps">Please</span> <span class="hps">any</span> <span class="hps">tips</span></span><span> :) </span></p><p>ts</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/764048#764048">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="https://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>