RE: loop timing out

2011-06-30 Thread Mark A. Kruger
) that is somewhat obscured from view while coding. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday, June 29, 2011 5:53 PM To: cf-talk Subject: Re: loop timing out

Re: loop timing out

2011-06-29 Thread daniel kessler
Any chance the looping couple be done in a stored proc? No, it's calling a page and that page is full of CF. However, I've decided to just do 5 at a time and reload the page. It seems to be working fine. Thank you everyone for your help. When I move to an app on CF8 or CF9, I'll look

Re: loop timing out

2011-06-29 Thread Terry Troxel
What am I doing wrong here as nothing shows up even with debugging turned on. The S drive is a mapped network drive. If mapped drive is the issue, is there any way around it? Terry ~| Order the Adobe Coldfusion Anthology now!

Re: loop timing out

2011-06-29 Thread Terry Troxel
It just might help if I pasted in the code.sorry. On Wed, Jun 29, 2011 at 12:19 PM, Terry Troxel terry.tro...@gmail.comwrote: What am I doing wrong here as nothing shows up even with debugging turned on. The S drive is a mapped network drive. If mapped drive is the issue, is there any

Re: loop timing out

2011-06-29 Thread Carl Von Stetten
The problem with mapped drives is that they may not be available or set under the user account the Coldfusion service is using. I'm assuming your running on a Windows box. Drive mappings are created at the time a user logs onto a Windows box. Since Coldfusion runs as a service, the user

Re: loop timing out

2011-06-29 Thread Dave Watts
The problem with mapped drives is that they may not be available or set under the user account the Coldfusion service is using.  I'm assuming your running on a Windows box.  Drive mappings are created at the time a user logs onto a Windows box.  Since Coldfusion runs as a service, the user

Re: loop timing out

2011-06-29 Thread Carl Von Stetten
I guess what I was trying to say is that depending on how drives are mapped, unless the user physically logs in to the desktop, drive mappings may not get applied (specifically drives mapped through login scripts). Login scripts don't appear to get processed when a service logs in. I wasn't

Re: loop timing out

2011-06-28 Thread daniel kessler
What about running the task in a cfthread? I have some tasks that run on a schedule (or manually triggered) for an hour or two without issue... It sounds interesting, but from my checking, it doesn't appear to be a CF7 tag.

Re: loop timing out

2011-06-28 Thread daniel kessler
Setting up a 'grouped' plan to only run x of them is a valid assessment, but I would suggest that you do this by tracking which ones need to be redone outside of the page. An example would be, you could have each of the necessary redone's to show up in a database table, and mark them as

RE: loop timing out

2011-06-28 Thread Rick Faircloth
Bummer... cfthread really helped with long-running scheduled tasks. -Original Message- From: daniel kessler [mailto:dani...@umd.edu] Sent: Tuesday, June 28, 2011 7:32 AM To: cf-talk Subject: Re: loop timing out What about running the task in a cfthread? I have some tasks that run

Re: loop timing out

2011-06-28 Thread Azadi Saryev
: loop timing out What about running the task in a cfthread? I have some tasks that run on a schedule (or manually triggered) for an hour or two without issue... It sounds interesting, but from my checking, it doesn't appear to be a CF7 tag

RE: loop timing out

2011-06-28 Thread Rick Faircloth
...@gmail.com] Sent: Tuesday, June 28, 2011 10:47 AM To: cf-talk Subject: Re: loop timing out Rick, i was under the impression that cfthred always obeyed request timeout setting in cf admin... at least in my experience i could never make a thread run longer than cfadmin setting, no matter which other way i

Re: RE: loop timing out

2011-06-28 Thread Jason Durham
. Others have a better/more-informed perspective for Azadi? -Original Message- From: Azadi Saryev [mailto:azadi.sar...@gmail.com] Sent: Tuesday, June 28, 2011 10:47 AM To: cf-talk Subject: Re: loop timing out Rick, i was under the impression that cfthred always obeyed request

loop timing out

2011-06-27 Thread daniel kessler
I'm creating a scheduled_task to correct a problem. For the correction, I'm doing a query for the list of problem records. Then I'm looping through the problem records and resending each one of them through the same code that it went through when it developed the problem. That code has

Re: loop timing out

2011-06-27 Thread William Seiter
Hey Daniel, In order to assist you, it would be helpful to see the code that has the loop as well as some knowledge of what the 'database call' is doing. (maybe the database call isn't returning?) The cfsetting that you mention, does only change the timeout setting for the page that it is

RE: loop timing out

2011-06-27 Thread Rick Faircloth
timing out Hey Daniel, In order to assist you, it would be helpful to see the code that has the loop as well as some knowledge of what the 'database call' is doing. (maybe the database call isn't returning?) The cfsetting that you mention, does only change the timeout setting for the page