RE: CFMX Schedule Tasks - Keep on truckin'

2002-10-31 Thread Stacy Young
ject: CFMX Schedule Tasks - Keep on truckin' If you programmatically add a schedule task like: http://myserver/myTask.cfm OPERATION="httprequest" STARTDATE="#DateFormat(Now())#" STARTTIME="#TimeFormat(BaseTime,'H:mm:ss tt')#" PUBLISH="no&

RE: CFMX Schedule Tasks - Keep on truckin'

2002-10-31 Thread Rob Rohan
t: Re: CFMX Schedule Tasks - Keep on truckin' Have you tried restarting the CronService through the Factory (CronSevice.Restart())? It works for other 'subservices', and you don't loose all session and application variables. Jochem ~

Re: CFMX Schedule Tasks - Keep on truckin'

2002-10-31 Thread Jochem van Dieten
Have you tried restarting the CronService through the Factory (CronSevice.Restart())? It works for other 'subservices', and you don't loose all session and application variables. Jochem ~| Archives: http://www.houseoffusion.com

CFMX Schedule Tasks - Keep on truckin'

2002-10-31 Thread Rob Rohan
If you programmatically add a schedule task like: http://myserver/myTask.cfm OPERATION="httprequest" STARTDATE="#DateFormat(Now())#" STARTTIME="#TimeFormat(BaseTime,'H:mm:ss tt')#" PUBLISH="no" INTERVAL="3600" REQUESTTIMEOUT="9000" > And then later (after it has run) you do The job