[jboss-jira] [JBoss JIRA] Resolved: (JBAS-5171) TxConnectionManager is track-connection-by-tx false by default

Dimitris Andreadis (JIRA) jira-events at lists.jboss.org
Sat Feb 2 11:45:03 EST 2008


     [ http://jira.jboss.com/jira/browse/JBAS-5171?page=all ]

Dimitris Andreadis resolved JBAS-5171.
--------------------------------------

    Resolution: Done

I believe this can be close now?

I created JBAS-5203 for Alexey to implement Adrian's <interleaving/> suggestion, for CR1.

> TxConnectionManager is track-connection-by-tx false by default
> --------------------------------------------------------------
>
>                 Key: JBAS-5171
>                 URL: http://jira.jboss.com/jira/browse/JBAS-5171
>             Project: JBoss Application Server
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: JCA service
>    Affects Versions:  JBossAS-5.0.0.Beta3
>            Reporter: Adrian Brock
>         Assigned To: Alexey Loubyansky
>            Priority: Critical
>             Fix For: JBossAS-5.0.0.Beta4
>
>
> The TxConnectionManager is always configured to be track-connection-by-tx by default.
> The old xslt used to do some complicated logic to try to determine the value
> XA with track-connection-by-tx
>       <xsl:choose>
>         <xsl:when test="(xa-transaction) and (track-connection-by-tx)">
>           <attribute name="TrackConnectionByTx">true</attribute>
>           <attribute name="LocalTransactions">false</attribute>
>         </xsl:when>
> XA with interleaving
>         <xsl:when test="(xa-transaction)">
>           <attribute name="TrackConnectionByTx">false</attribute>
>           <attribute name="LocalTransactions">false</attribute>
>         </xsl:when>
> Non XA MUST BE track-connection-by-tx
>         <xsl:otherwise>
>           <attribute name="TrackConnectionByTx">true</attribute>
>           <attribute name="LocalTransactions">true</attribute>
>         </xsl:otherwise>
>       </xsl:choose>
> The last part is not being done by the new connection factory deployer/metadata.
> In fact, to simplify it (and answer some FAQs), I suggested that <track-connection-by-tx/> should be "dropped" and set to true all the time (with a warning about deprecation when somebody tries to use it).
> Instead users of XA should explicity enable <interleaving/>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list