[JBoss-user] [JBoss jBPM] - Scheduler bug

2006-06-06 Thread maksymg
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 {

[JBoss-user] [JBoss jBPM] - Schedule improvements

2006-06-06 Thread maksymg
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

[JBoss-user] [EJB/JBoss] - Re: Deployment problem for two ejb that share the same code

2004-02-27 Thread maksymg
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

[JBoss-user] [EJB/JBoss] - Deployment problem for two ejb that share the same code

2004-02-26 Thread maksymg
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