[
https://issues.apache.org/jira/browse/ARIES-1158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Guillaume Nodet resolved ARIES-1158.
------------------------------------
Resolution: Fixed
Fix Version/s: transaction-jms-2.0.0
Assignee: Guillaume Nodet
https://svn.apache.org/viewvc?view=revision&revision=1602148
> XAConnectionFactory not recoverable
> -----------------------------------
>
> Key: ARIES-1158
> URL: https://issues.apache.org/jira/browse/ARIES-1158
> Project: Aries
> Issue Type: Bug
> Components: Transaction
> Environment: Windows/UNIX
> Reporter: Benjamin Graf
> Assignee: Guillaume Nodet
> Fix For: transaction-jms-2.0.0
>
>
> GenericResourceManager needs XAConnectionFactory for recovery but gets only
> ConnectionFactory which wraps the XAConnectionFactory provided.
> XaPooledConnectionFactory:
> public void setXaConnectionFactory(XAConnectionFactory xaConnectionFactory) {
> this.xaConnectionFactory = xaConnectionFactory;
> setConnectionFactory(new ConnectionFactory() {
> public Connection createConnection() throws JMSException {
> return
> XaPooledConnectionFactory.this.xaConnectionFactory.createXAConnection();
> }
> public Connection createConnection(String userName, String
> password) throws JMSException {
> return
> XaPooledConnectionFactory.this.xaConnectionFactory.createXAConnection(userName,
> password);
> }
> });
> }
--
This message was sent by Atlassian JIRA
(v6.2#6252)