How do you access the TreeCache ? From a SFSB ? Can you submit a small test program that reproduces the problem ? Looks as if the transaction that tries to access the cache has already been committed.
This might be a possible buf *if* you intend to access the cache after committing the TX, e.g (conceptually): tx.begin(); doSomething(); tx.commit(); cache.put(fqn, key, val); The fix could be to just ignore the committed TX, and run the operation on the cache without a TX. Bela View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3839579#3839579 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3839579 ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
