RE: grrrrr ... CFSchedule

2003-01-03 Thread Owens, Howard
Here's the cfscheduler log: "Information","956","01/03/03","12:35:57",,"Scheduled task 'inserts8_clean_up' for URL request 'http://localhost/vcrecruitment/admin/inserts/qry_cleanup.cfm' initiated." "Information","956","01/03/03","12:35:57",,"Scheduled task 'inserts8_clean_up' for URL request 'http

RE: grrrrr ... CFSchedule -- new question

2003-01-03 Thread Owens, Howard
OK ... I've the service Cold Fusion Application Server must pass a username/password to the shared network drive, is that sufficient for CFSchedule, or is there another service that needs a password set up? Or should it be set up in the tag/administrator? What is the Cold Fusion Management Serv

RE: grrrrr ... CFSchedule

2003-01-03 Thread Stephenie
:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 12:25 PM To: CF-Talk Subject: RE: gr ... CFSchedule Only the last template in my sequence sends an e-mail. Here's what I'm doing ... Accessing a file on a shared drive/server, reading it and dumping into a database.* Then a templa

RE: grrrrr ... CFSchedule

2003-01-03 Thread Owens, Howard
scheduled tasks separated by five minutes, starting at 12:01 a.m. *CF has login permisson for the remote server/drive. H. > -Original Message- > From: Joe Zanter [SMTP:[EMAIL PROTECTED]] > Sent: Friday, January 03, 2003 7:35 AM > To: CF-Talk > Subject: RE: gr ... CFS

RE: grrrrr ... CFSchedule

2003-01-03 Thread Owens, Howard
). H. > -Original Message- > From: Taz [SMTP:[EMAIL PROTECTED]] > Sent: Friday, January 03, 2003 12:30 AM > To: CF-Talk > Subject: Re: gr ... CFSchedule > > Does the script take a long time to run? If so, you might need to stick a > RequestTimeout on the URL stri

RE: grrrrr ... CFSchedule

2003-01-03 Thread Joe Zanter
Our admin had to enter a pw to give cfschedule the capability/permission to send emails. -- Joe Zanter, Materials Lab, Woodward Aircraft Engine Systems 5001 North 2nd Street, Rockford IL 61125 ph 815-639-6312, fx 815-639-5104 mailto:[EMAIL PROTECTED] Electric light is not the result of a ser

RE: grrrrr ... CFSchedule

2003-01-03 Thread Peter Tilbrook
might have to - and break my own developer box in the process. You gotta love this job, eh? -Original Message- From: Taz [mailto:[EMAIL PROTECTED]] Sent: Friday, 3 January 2003 7:30 PM To: CF-Talk Subject: Re: gr ... CFSchedule Does the script take a long time to run? If so, you might ne

Re: grrrrr ... CFSchedule

2003-01-03 Thread Taz
Does the script take a long time to run? If so, you might need to stick a RequestTimeout on the URL string that calls the template in scheduler. I've noticed in the past that big tasks tend to time out running via CFSchedule even though they don't require a RequestTimeout when accessed through a br

RE: grrrrr ... CFSchedule

2003-01-02 Thread Blum, Jason (SAA)
that everything seems to be working fine. -j -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 3:51 PM To: CF-Talk Subject: RE: gr ... CFSchedule I have always tested my schedule scripts by having it email me at the end for testing, and exe

RE: grrrrr ... CFSchedule

2003-01-02 Thread Robert Bailey
-Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 12:48 PM To: CF-Talk Subject: RE: gr ... CFSchedule Howard Owens wrote: >Any suggestions on why the scheduled events trigger but don't >produce any results? I've always bee

RE: grrrrr ... CFSchedule

2003-01-02 Thread Matt Robertson
Howard Owens wrote: >Any suggestions on why the scheduled events trigger but don't >produce any results? I've always been able to get it to work, but the formula for success has not always been entirely straightforward. This may sound strange at first, but have you tried waiting for 24 hours to

RE: grrrrr ... CFSchedule

2003-01-02 Thread Owens, Howard
Thanks, Michael ... tried this ... templates run fine without error. H. > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 02, 2003 11:33 AM > To: CF-Talk > Subject: Re: gr ... CFSchedule > > Use this to

RE: grrrrr ... CFSchedule

2003-01-02 Thread Owens, Howard
No logging in ... no client or session variables ... pretty straightforward queries and such. Schedule to run once per day. H. > -Original Message- > From: Rob Rohan [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 02, 2003 11:26 AM > To: CF-Talk > Subject:

Re: grrrrr ... CFSchedule

2003-01-02 Thread Michael Dinowitz
Use this to check if the url your calling is a good one or if it has any errors. The usual errors are environmental such as logins and the like. Scheduler Checker Url to test: #cfhttp.filecontent# #CFCATCH.Message# #CFCATCH.Detail# ~~~

RE: grrrrr ... CFSchedule

2003-01-02 Thread Rob Rohan
I have had some errors in logic when using the scheduler. Remember that it is a new request and some things in your code may not be available if not coded properly. i.e. if you are using the same page that a 'logged in' client would use, there might be session variables set by the login process th

Re: grrrrr ... CFSchedule

2003-01-02 Thread Michael Dinowitz
Have you run the url directly and gotten the desired result? If yes, then do the following. Write a CFHTTP to call the page and check the results. The internals of CFSCHEDULE use CFHTTP to do the work so if CFHTTP fails, the entire thing fails. > I first tried using CFSchedule a couple of years a