weird issue with utility

2014-04-15 Thread John M Bliss
I have a little utility I run on my dev box which calls data-fetching processes on my production box. Usually works great: cfloop index=i from=0 to=-90 step=-1 cfhttp url=http://production.com/?Date=#DateFormat(DateAdd('d', i, now()), 'm/d/')# /cfloop But now I have it pointed at a

Re: weird issue with utility

2014-04-15 Thread Dave Watts
I have a little utility I run on my dev box which calls data-fetching processes on my production box. Usually works great: cfloop index=i from=0 to=-90 step=-1 cfhttp url=http://production.com/?Date=#DateFormat(DateAdd('d', i, now()), 'm/d/')# /cfloop But now I have it pointed at a

Re: weird issue with utility

2014-04-15 Thread John M Bliss
Right. Usually, it runs serially just fine. With this production URL, it behaves in the way I described. On Tue, Apr 15, 2014 at 3:42 PM, Dave Watts dwa...@figleaf.com wrote: I have a little utility I run on my dev box which calls data-fetching processes on my production box. Usually

Re: weird issue with utility

2014-04-15 Thread Dave Watts
Right. Usually, it runs serially just fine. With this production URL, it behaves in the way I described. I would then assume that this production URL is taking much longer to complete. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/ http://training.figleaf.com/ Fig

Re: weird issue with utility

2014-04-15 Thread Byron Mann
It sounds like maybe the first cfhttp call from the client is ending with maybe a 500 error at the production.com URI and not really returning a response to the client. In that instance I can see the first iteration in the client side loop just stalling, while on the end point side, Fusion

Re: weird issue with utility

2014-04-15 Thread John M Bliss
Good idea. I'll check... On Tue, Apr 15, 2014 at 4:13 PM, Byron Mann byronos...@gmail.com wrote: It sounds like maybe the first cfhttp call from the client is ending with maybe a 500 error at the production.com URI and not really returning a response to the client. In that instance I can

Re: weird issue with utility

2014-04-15 Thread Russ Michaels
I would suggest you log the responses you get back from the cfhttp request which may tell you if there is a problem. On Tue, Apr 15, 2014 at 8:32 PM, John M Bliss bliss.j...@gmail.com wrote: I have a little utility I run on my dev box which calls data-fetching processes on my production