Re: [OT] Framework for managing task

2009-02-23 Thread James Perry
IMHO, you might want to look at the Spring framework as it provides a nice API on top of the asynchronous JEE features you need. Best, James. On Sun, Feb 22, 2009 at 10:26 PM, Kaspar Fischer wrote: > My Wicket app needs to run tasks in the background and I am looking for a > Java framework to "p

Re: [OT] Framework for managing task

2009-02-23 Thread Uwe Schäfer
Kaspar Fischer schrieb: the task will be run, even if the server is shut down in between and the task needs to be restarted. Also, tasks that support cancellation (à la java.util.concurrent.ExecutorService) should be cancelled when the system stops. sounds like JMS. I´d recommend ActiveMQ.

Re: [OT] Framework for managing task

2009-02-23 Thread Kaspar Fischer
That seems to be it! Thanks a lot, Pierre. Kaspar On 23.02.2009, at 00:39, Pierre Goupil wrote: Maybe Quartz is what you want : http://www.opensymphony.com/quartz/ Regards, Pierre On Sun, Feb 22, 2009 at 11:26 PM, Kaspar Fischer wrote: My Wicket app needs to run tasks in the backgro

Re: [OT] Framework for managing task

2009-02-22 Thread Pierre Goupil
Maybe Quartz is what you want : http://www.opensymphony.com/quartz/ Regards, Pierre On Sun, Feb 22, 2009 at 11:26 PM, Kaspar Fischer wrote: > My Wicket app needs to run tasks in the background and I am looking for a > Java framework to "persist" tasks in the sense that I can submit a task an

[OT] Framework for managing task

2009-02-22 Thread Kaspar Fischer
My Wicket app needs to run tasks in the background and I am looking for a Java framework to "persist" tasks in the sense that I can submit a task and the framework would ensure that once submitted (transactions?), the task will be run, even if the server is shut down in between and the task