<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: conflicts in database connections in JTA in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84301#M56713</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi tbee,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You need a JTA-transaction-aware datasource proxy. This has nothing to do with the database driver. You need a datasource that integrates with your transaction manager, such that you always use the same connection in the same transaciton. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you used this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://docs.codehaus.org/display/BTM/JdbcConfiguration2x" rel="nofollow noopener noreferrer"&gt;http://docs.codehaus.org/display/BTM/JdbcConfiguration2x&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure to set&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;shareTransactionConnections=true&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 23 Sep 2012 07:53:39 GMT</pubDate>
    <dc:creator>meyerd</dc:creator>
    <dc:date>2012-09-23T07:53:39Z</dc:date>
    <item>
      <title>conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84296#M56708</link>
      <description>I've got a setup where business model and Activiti are mixed into one engine. In order to facilitate transactional consistency, Bitronix JTA-XA is used to enabled distributed transactions. Configuration wise this works, however during the execution of a Activiti listener the connections have a confl</description>
      <pubDate>Thu, 20 Sep 2012 12:43:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84296#M56708</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-20T12:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84297#M56709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One more example, this is done within one JTA transaction:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;2012-09-20 16:04:13,047 DEBUG #22433263[C18131420] activiti: [1] setString=27101 / java.lang.String / insert into ACT_RU_EXECUTION (ID_, …&lt;BR /&gt;…&lt;BR /&gt;2012-09-20 16:04:13,329 DEBUG #925089[C16330489] activiti: [1] setString=27101 / java.lang.String / select E.*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from ACT_RU_EXECUTION …&lt;BR /&gt;&lt;/CODE&gt;&lt;SPAN&gt;That last line returns null since it uses a different connection than the insert. The last line is the result of:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;nbsp; List&amp;lt;ProcessInstance&amp;gt; lProcessInstances = lProcessEngine.getRuntimeService().createProcessInstanceQuery().processInstanceId(processInstanceId).list();&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Can I configure Activiti (Hibernate) to use the same connection for read and write?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 14:10:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84297#M56709</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-20T14:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84298#M56710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Confirmed! In non JTA mode Activiti uses one JDBC connection for all three statements (408, 432, 877). I'm filing a bug.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 14:29:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84298#M56710</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-20T14:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84299#M56711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi tbee,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when you do &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;ProcessEngines.getDefaultProcessEngine().getRuntimeService().setVariable( getWorkflowProcessInstance().getProcessInstanceId(), "validateOfferStage", Long.valueOf(System.currentTimeMillis()));&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;a new command is executed which opens a new mybatis session. In this session, a connection to the database is obtained. You write that you setup the environment with Bitronix yourself. Are you using a JTA aware datasource? When you are using an Java EE application server, the JCA database connector make sure that whenever you obtain a JDBC connection and already obtained one in the same JTA transaction, you get the same connection. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would invite you to run you test in a Java EE application server like Jboss 7 or Glassfish 3 since there all of this is already setup correctly. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Read: &lt;/SPAN&gt;&lt;A href="http://jbossts.blogspot.de/2012/01/connecting-dots.html" rel="nofollow noopener noreferrer"&gt;http://jbossts.blogspot.de/2012/01/connecting-dots.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 05:59:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84299#M56711</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-09-23T05:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84300#M56712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In the Jira issue&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://jira.codehaus.org/browse/ACT-1385" rel="nofollow noopener noreferrer"&gt;https://jira.codehaus.org/browse/ACT-1385&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Frederick Heremans says &lt;/SPAN&gt;&lt;EM&gt;The default activiti behavior uses thread-local/datasource transaction management or a similar mechanism, which results in reusing the open connection from the 1st context. When using JTA for handling transactions however, a new transaction is created with a new connection.&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So he confirms that there is a different connection management in normal vs JTA mode. Naturally my opinion is that there should not be; if code runs in normal mode, it should also in JTA. So the question is: why is there a different handling? Is there a good reason to do so? Why can't the connection in JTA mode be reused as well?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm using Postgres 9.1, the driver is JTA-XA compatible. I've made a work around for my current code (no idea what I will run into in the future) by attaching the ExeuctionDelegate and TaskDelegate to the current thread in the listeners, and use that further down in a custom setVariable.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 06:14:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84300#M56712</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-23T06:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84301#M56713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi tbee,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You need a JTA-transaction-aware datasource proxy. This has nothing to do with the database driver. You need a datasource that integrates with your transaction manager, such that you always use the same connection in the same transaciton. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you used this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://docs.codehaus.org/display/BTM/JdbcConfiguration2x" rel="nofollow noopener noreferrer"&gt;http://docs.codehaus.org/display/BTM/JdbcConfiguration2x&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure to set&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;shareTransactionConnections=true&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 07:53:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84301#M56713</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-09-23T07:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84302#M56714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Frederick Heremans says The default activiti behavior uses thread-local/datasource transaction management or a similar mechanism, which results in reusing the open connection from the 1st context. When using JTA for handling transactions however, a new transaction is created with a new connection.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;This is wrong BTW. You only get a new connection, if you open a new JTA transaction. the default behavior is that the 2nd context participates in the transaction opened by the first context. If you would open a new transaction for the second command, you would get a new connection. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Compare this to REQUIRED vs. REQUIRES_NEW in EJB.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 07:58:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84302#M56714</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-09-23T07:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84303#M56715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That could very well be wrong, I do not know. The only point I think is relevant is that IMHO Activiti should behave identically in normal and JTA mode.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 08:09:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84303#M56715</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-23T08:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84304#M56716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The only point I think is relevant is that IMHO Activiti should behave identically in normal and JTA mode.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;It does, if you setup JTA correctly! Just try it in Jboss or Glassfish.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 08:14:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84304#M56716</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-09-23T08:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84305#M56717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I do not see how I could have made an error in setting my unit test environment up.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- I create a single DataSource in Bitronix&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- I assign this DataSource to a JNDI name (using Glassfishes JNDI implementation)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- I tell Activiti to use JTA and specify the JNDI name&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where could I have made a mistake?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 08:43:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84305#M56717</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-23T08:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84306#M56718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I wrote earlier: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Make sure to set&lt;BR /&gt;shareTransactionConnections=true&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;In &lt;/SPAN&gt;&lt;A href="https://jira.codehaus.org/secure/attachment/61422/BitronixTrial.java" rel="nofollow noopener noreferrer"&gt;https://jira.codehaus.org/secure/attachment/61422/BitronixTrial.java&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;you are missing the shareTransactionConnections=true have you added this in the meantime?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Sep 2012 08:59:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84306#M56718</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-09-23T08:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84307#M56719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;BTW, the essence of this code is attached to the Jira issue, so it should be fairly easy to reproduce.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@meyerd: sorry, I had not seen your reply yet. I will test that tomorrow!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2012 08:11:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84307#M56719</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-24T08:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84308#M56720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That option does not exist.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;Invalid property 'shareTransactionConnections' of bean class [org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration]: Bean property 'shareTransactionConnections' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?&lt;/EM&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 07:12:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84308#M56720</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-25T07:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84309#M56721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi tbee,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;it is not a property in activiti but a property on the Bitronix PoolingDataSource&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 09:17:34 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84309#M56721</guid>
      <dc:creator>meyerd</dc:creator>
      <dc:date>2012-09-25T09:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84310#M56722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry. No difference. It's still using a different connection.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 09:25:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84310#M56722</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-25T09:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84311#M56723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Let me take that back. Too many file and configurations running around. It seems to work. More testing…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 09:29:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84311#M56723</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-25T09:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84312#M56724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That's great news. Please report back if it works, so future generations can learn from it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@Daniel: thanks, didn't knew about that property!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 07:53:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84312#M56724</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-09-26T07:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84313#M56725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I didn't either &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But so far so good. I'm planning a blog post about this next week.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 08:55:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84313#M56725</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-09-26T08:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84314#M56726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Awesome. Keep us posted!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 11:30:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84314#M56726</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2012-10-01T11:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: conflicts in database connections in JTA</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84315#M56727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is the blog:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://tbeernot.wordpress.com/2012/10/02/stand-alone-business-model-with-activiti-eclipselink-and-unit-tests-on-postgresql/" rel="nofollow noopener noreferrer"&gt;http://tbeernot.wordpress.com/2012/10/02/stand-alone-business-model-with-activiti-eclipselink-and-unit-tests-on-postgresql/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Oct 2012 17:29:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/conflicts-in-database-connections-in-jta/m-p/84315#M56727</guid>
      <dc:creator>tbee</dc:creator>
      <dc:date>2012-10-02T17:29:21Z</dc:date>
    </item>
  </channel>
</rss>

