RE: [OT] Scheduling

2003-09-05 Thread Andrew Hill
Or: Implement the PlugIn interface & add the appropriate reference to your class in yoir struts-config.xml -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: Monday, 1 September 2003 19:41 To: Struts Users Mailing List Subject: RE: [OT] Scheduling Using this me

RE: [OT] Scheduling

2003-09-05 Thread Hue Holleran
Using this method could you not do this in a servlet set in web.xml with "load-on-startup"? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 01 September 2003 11:58 > To: Struts Users Mailing List > Subject: RE: [OT] Scheduling >

RE: [OT] Scheduling

2003-09-02 Thread Adam Levine
http://www.part.net/quartz.html > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > Sent: 01 September 2003 06:37 > > To: [EMAIL PROTECTED] > > Subject: [OT] Scheduling > > > > > > Hi All, > > What would be the best implementation for scheduling a job in > >

RE: [OT] Scheduling

2003-09-02 Thread Hue Holleran
# Run command on number of errors threshold reached result=$($errcntreachedaction) echo -en "$(date --utc +'%a %d-%b-%Y %X') " >> $logfile echo -e "ERROR COUNT AT MAXIMUM $errcntmax: $result\n" fi # Exit script with error l

RE: [OT] Scheduling

2003-09-01 Thread Hue Holleran
age- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 01 September 2003 11:58 > To: Struts Users Mailing List > Subject: RE: [OT] Scheduling > > > > Yes, I have done that. But, now i am stuck as to where to invoke it from. > I should not use Weblogic

RE: [OT] Scheduling

2003-09-01 Thread Hue Holleran
#x27;%a %d-%b-%Y %X') " >> $logfile echo -e "ERROR COUNT AT MAXIMUM $errcntmax: $result\n" fi # Exit script with error level 2 exit 2 fi > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 01 September

Re: [OT] Scheduling

2003-09-01 Thread James Harman
:[EMAIL PROTECTED] |Sent: Monday, September 01, 2003 3:37 PM |To: [EMAIL PROTECTED] |Cc: [EMAIL PROTECTED] |Subject: RE: [OT] Scheduling | | | |Hi, |Can you throw some light on the Unix "cron". I have Weblogic running on |Unix. so, i guess i can use this solution. | |th

RE: [OT] Scheduling

2003-09-01 Thread rajendra . x . yadav
.com>cc: Subject: RE: [OT] Scheduling

RE: [OT] Scheduling

2003-09-01 Thread Navjot Singh
: [EMAIL PROTECTED] |Subject: RE: [OT] Scheduling | | | |Hi, |Can you throw some light on the Unix "cron". I have Weblogic running on |Unix. so, i guess i can use this solution. | |thanks |-raj | | | | | | | | "Hue Holleran" | | <[EMA

RE: [OT] Scheduling

2003-09-01 Thread Robert Taylor
If you cannot use any third party tools, you can implement your own schedular using java.util.Timer and java.util.TimerTask. robert > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, September 01, 2003 1:37 AM > To: [EMAIL PROTECTED] > Subject: [OT] S

RE: [OT] Scheduling

2003-09-01 Thread rajendra . x . yadav
Action.net> cc: Subject: RE: [OT] Scheduling

RE: [OT] Scheduling

2003-09-01 Thread Hue Holleran
Well, possibly not an elegant answer but... 1) Under *nix we've done this with "cron" and a "bash script" that invokes "wget" to launch a servlet process. 2) Under Windows we've used a VBS script via "at"/"winat"/"Scheduled Tasks" and "Microsoft.XMLHTTPRequest" to initiate a HTTP connection to lau

RE: [OT] Scheduling

2003-09-01 Thread Daniel Washusen
I havn't used it but quartz sounds pretty cool... http://www.part.net/quartz.html or http://sourceforge.net/projects/quartz/ > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, 1 September 2003 3:37 PM > To: [EMAIL PROTECTED] > Subject: [OT] Scheduling

Re: [OT] Scheduling

2003-09-01 Thread rajendra . x . yadav
.com>cc: Subject: Re: [OT] Scheduling

Re: [OT] Scheduling

2003-09-01 Thread Dan Tran
check out this link http://demo.jgsullivan.com/struts/index.html -Dan - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 31, 2003 10:36 PM Subject: [OT] Scheduling > Hi All, > What would be the best implementation for scheduling a job in Weblogi