When timer's action tries to end the token it linked to, the scheduler is
crashed with Hibernate ObjectNotFound exception due to the token ending
removes all timers.
I rewrite SchedulerSession to avoid it(not perfect but workable):
|public void saveTimer(Timer timer) {
| try {
Hi All,
The current schedule processes all due timers in a single transaction. As
result, it rollbacks all timers' work due to an exception in one of the timers.
It's a problem:
- when you work with nontransactional resources as file system.
- if you have long lasting transaction, the total leng
I tested it with commit option A, and B. on JDBC level I use default XA connection to
Oracle.
I guess the problem in my case in that the beans form different ejb modules with
different JNDI names share the same class loader and class instance. By the way, can
anybody explain me how JBoss ejb co
Hi All,
I have an ejb1.jar module that by simplicity has a EJBHomeFactory session bean that
caches references to other bean homes. The module by itself works fine.
But I need to include two such modules (driving and driven) in the same application (I
have two similar database schema with refere