How to run an action automatically like thread ?

2005-05-26 Thread minhnguyet
Hi all , I have an action in struts that I want it will read database and process some another actions base on that database every 10 minutes . But I don't how to make it automatically run like thread in application ! Any recomments ? Thanks in advance for help .

RE: How to run an action automatically like thread ?

2005-05-26 Thread Paul McCulloch
: minhnguyet [mailto:[EMAIL PROTECTED] Sent: 2005/26/05 07:21 To: Struts FAQ Subject: How to run an action automatically like thread ? Hi all , I have an action in struts that I want it will read database and process some another actions base on that database every 10 minutes . But I

RE: How to run an action automatically like thread ?

2005-05-26 Thread Nitin Mandolkar
If you are working on Linux platform use crontab i.e. Linux scheduler. Nitin. -Original Message- From: Paul McCulloch [mailto:[EMAIL PROTECTED] Sent: 26 May 2005 09:53 To: 'Struts Users Mailing List' Subject: RE: How to run an action automatically like thread ? Quartz (http

RE: How to run an action automatically like thread ?

2005-05-26 Thread Nitish Kumar
' Subject: RE: How to run an action automatically like thread ? Quartz (http://www.opensymphony.com/quartz/) is a job scheduling system which sounds like it could help you out. I'd reconsider whether your code should really be in a Struts action. What are you gaining by using Struts for a non-web bit

RE: How to run an action automatically like thread ?

2005-05-26 Thread Marco Mistroni
Hello, I agree with this comment. Quartz (http://www.opensymphony.com/quartz/) is a job scheduling system which sounds like it could help you out. Data is udated every 10 min, and when you access your jsp you will have The most recent data.. But I can't say more since I don't know what

RE: RE: How to run an action automatically like thread ?

2005-05-26 Thread minhnguyet
: How to run an action automatically like thread ? Hello, I agree with this comment. Quartz (http://www.opensymphony.com/quartz/) is a job scheduling system which sounds like it could help you out. Data is udated every 10 min, and when you access your jsp you will have The most recent data