Re: Scheduler

2003-12-02 Thread HG
Hi Gurpreet I haven't tried this...but it came across my mind as I need something similar very soon. You could write a Struts plugin... init() method called on start of webapp and destroy() method called on shutdown of webapp. In the init() method you could start a thread that wakes up at

Re: Scheduler

2003-12-02 Thread Gurpreet Dhanoa
: Tuesday, December 02, 2003 5:26 PM Subject: Re: Scheduler Hi Gurpreet I haven't tried this...but it came across my mind as I need something similar very soon. You could write a Struts plugin... init() method called on start of webapp and destroy() method called on shutdown of webapp

Re: Scheduler

2003-12-02 Thread HG
Please share your success with the rest of us... I am in need of similar functionality...very soon... - Original Message - From: Gurpreet Dhanoa [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 1:04 PM Subject: Re: Scheduler hi HG

Re: Scheduler

2003-12-02 Thread Gurpreet Dhanoa
02, 2003 5:38 PM Subject: Re: Scheduler Please share your success with the rest of us... I am in need of similar functionality...very soon... - Original Message - From: Gurpreet Dhanoa [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, December 02, 2003

Re: Scheduler

2003-12-02 Thread vellosa
how this works in containers and how the specs are not violated. regrds IV from:Gurpreet Dhanoa [EMAIL PROTECTED] date:Tue, 02 Dec 2003 12:15:16 to: [EMAIL PROTECTED] subject: Re: Scheduler Hi HG I will surely share the sucess after sucessfully implementing

RE: Scheduler

2003-12-02 Thread Jimmy Emmanual
There are also Jcontab - jcontab.sf.net -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 8:02 AM To: [EMAIL PROTECTED] Subject: Re: Scheduler We are using an open source project called Quartz, available on source forge

RE: Scheduler

2003-12-02 Thread Markus
PROTECTED] Subject: Re: Scheduler We are using an open source project called Quartz, available on source forge, for this kind of thing. It has been working really well here. We register classes with a cron style timer and at the given times the registered class is called back. There is also

RE: Scheduler

2003-12-02 Thread Prabhat Kumar (IT)
jcrontab is misspelled as jcontab. http://jcrontab.sourceforge.net/index.shtml -Original Message- From: Markus [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 8:28 AM To: Struts Users Mailing List Subject: RE: Scheduler Hi, I've tried to find Jcontab on but it doesn't exist

Re: Scheduler

2003-12-02 Thread chekuri raju
Hi All, we are using a simple servlet which acts as a scheduler. in its init() we get the at what time to execute from props file and call java.util.Timer.schedule() in it.the schedule() takes an object(which implements java.util.TimerTask) as parameter regards srinivas

Re: Scheduler

2003-12-02 Thread HG
Hi srinivas Nice, clean solutionAdoptable for sure.. Thanx, Henrik - Original Message - From: chekuri raju [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 2:50 PM Subject: Re: Scheduler Hi All, we are using a simple servlet

RE: Scheduler

2003-12-02 Thread Nicholson, Robb
Seems like the easiest way might be to write a JMX MBean and deploy that thing in a J2EE server, like JBoss. Have that thing start a thread that checks alerts every so often and then when required, send the alert. Then it runs when the server starts up without a lot of manual work-arounds and

Re: Scheduler

2003-12-02 Thread EL AKARI Mehdi
Hi all, In my opinion, an application that should do the job you specified has nothing to do with struts. I think that it should be developpend independently of the struts one (wich is essencially designed for a web UI). Off course you can plugg your application to the struts one (so as it coud

RE: Scheduler

2003-12-02 Thread vellosa
:Tue, 02 Dec 2003 13:54:47 to: [EMAIL PROTECTED] subject: RE: Scheduler Seems like the easiest way might be to write a JMX MBean and deploy that thing in a J2EE server, like JBoss. Have that thing start a thread that checks alerts every so often and then when required, send the alert

RE: Scheduler

2003-12-02 Thread Paananen, Tero
Any help will be of great use. Use Quartz. It's a very nice app, though might be a little overkill for your current requirements. -TPP - This email may contain confidential and privileged material for the sole use of the

RE: Scheduler

2003-12-02 Thread Turansky, Mark
?DoTheSimplestThingThatCouldPossiblyWork -Original Message- From: EL AKARI Mehdi [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 9:07 AM To: Struts Users Mailing List Subject: Re: Scheduler Hi all, In my opinion, an application that should do the job you specified has

Re: Scheduler

2003-12-02 Thread Joe Germuska
On Dec 2, 2003, at 8:58 AM, Paananen, Tero wrote: Any help will be of great use. Use Quartz. It's a very nice app, though might be a little overkill for your current requirements. If you choose to use Quartz, you may be interested in some utility libraries that we cooked up: jgs-quartz, which