I'm designing a part of a JEE6 application, consisting of EJB3 beans. Part of the requirements are multiple parallel (say a few hundred) long running (over days) database hunts. Individual hunts ...
In my Singleton-EJB i start a TimerService every 2 minutes. When a client access the test method
sometimes the application runs into a deadlock. The problem is, the test method calls a ...
I am writing an enterprise Java application that uses asynchronous EJB 3.1 methods to execute a number of tasks in parallel. To support cancelling a long running task I have been ...
I'm struggling to figure out why an @Asynchronous method in my EJB isn't actually being invoked asynchronously. I'm running on JBoss AS 7 using CDI (with beans.xml) in a JSF2 project ...
I am using org.jboss.ejb3.common.proxy.plugins.async.AsyncUtils.mixinAsync to perform time consuming task asynchronously due to my use of EJB 3.0 instead of EJB 3.1. Via asynchronous call, we can give users the illusion that ...