[
http://jira.jboss.com/jira/browse/JBAS-3693?page=all ]
Weston Price resolved JBAS-3693.
--------------------------------
Fix Version/s: JBossAS-4.0.5.CR1
(was: JBossAS-4.0.5.GA)
Resolution: Done
Changed behavior for destroying XA resource on XAResource.end failure. Connections are no
longer returned to the pool.
Other XAResource errors
-----------------------
Key: JBAS-3693
URL:
http://jira.jboss.com/jira/browse/JBAS-3693
Project: JBoss Application Server
Issue Type: Sub-task
Security Level: Public(Everyone can see)
Components: JCA service
Affects Versions: JBossAS-4.0.4.GA
Reporter: Adrian Brock
Assigned To: Weston Price
Fix For: JBossAS-5.0.0.Beta, JBossAS-4.0.5.CR1
Further to JBAS-3336 (resource manager error during enlist should close the connection).
There are other xa resource failures that need to be catered for.
e.g. a failure to delist probably means a problem with the connection.
Also, this could be dealt with at the rar level? e.g. the jdbc XAManagedConnection
public void end(Xid xid, int flags) throws XAException
{
+ try
+ {
xaResource.end(xid, flags);
+ }
+ catch (XAException e)
+ {
+ broadcastConnectionError(e);
+ throw e;
+ }
...
--
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