Subject Re: Rollback called with current xid
Author Roman Rokytskyy
Hi,

> I'm getting the following error when rlooing back a distributed
> transaction
>
> org.firebirdsql.jca.FBXAException: Rollback called with current xid
> at
>
org.firebirdsql.jca.FBManagedConnection.internalRollback(FBManagedConnection.java:597)
> at
>
org.firebirdsql.jca.FBManagedConnection.rollback(FBManagedConnection.java:578)
>
> what does it mean?

Most likely you are using JTA in a wrong way: first you have to end
the transaction, and only then you can call commit or rollback (see
page 25 of JTA 1.0.1 specification).

Roman