Hi, Please use the [email protected] mailing list for questions about Jackrabbit configuration.
On Tue, Sep 1, 2009 at 12:01 PM, mat_the_green<[email protected]> wrote: > The database connection times out after about 12 hours and JackRabbit tries > to reconnect but is using a normal java.sql.Connection and is trying to > rollback the transaction. > After reading through some documentation I think that JackRabbit should be > using a XAConnection and I was wondering how I configure the persistence > manager to ensure this? Jackrabbit expects to be in full control of the underlying database connection, so you should not try to use an external transaction manager for that. Jackrabbit supports distributed XA transactions on the Session level, so you can simply associate your JCR sessions with the transaction manager. BR, Jukka Zitting
