Re: [OT/RANT] Quartz

2007-09-10 Thread Ben Souther
Hehe. It's amazing what you can do with one line of code using cron and wget. On Thu, 2007-09-06 at 17:43, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doesn't anyone know how to use cron anymore? Sheesh... - -chris Andrew Hole wrote: I can't find

Re: [OT/RANT] Quartz

2007-09-10 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben, Ben Souther wrote: Hehe. It's amazing what you can do with one line of code using cron and wget. For real. I've never found an application where it makes sense to have a scheduled job run inside the webapp. I realize that lots of folks

Re: [OT/RANT] Quartz

2007-09-10 Thread Wade Chandler
Well, I have a couple of web applications which suck up a thread for such things as well. I do it so that I can schedule processes through this single application and the end people do not need anything else, and also because if they had to admin their own servers in these instances it would just

Re: [OT/RANT] Quartz

2007-09-10 Thread David kerber
I've had good luck creating timed events with java.util.Timer and java.util.TimerTask. No external libs needed... D Ben Souther wrote: Hehe. It's amazing what you can do with one line of code using cron and wget. On Thu, 2007-09-06 at 17:43, Christopher Schultz wrote: -BEGIN

Re: [OT/RANT] Quartz

2007-09-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doesn't anyone know how to use cron anymore? Sheesh... - -chris Andrew Hole wrote: I can't find an example of using Quartz to scheduling jobs on Tomcat Web application. Someone already work with Quartz? Could you share a hello world sample?