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
Reactor thinks the request is done.

Do you get output on the client side when just calling the first
iteration...

<cfloop index="i" from="0" to="-90" step="-1">
<cfhttp url="http://production.com/?Date=#DateFormat(DateAdd('d', i,
now()), 'm/d/yyyy')#">
<cfdump var="#cfhttp#">
<cfbreak>
</cfloop>


Byron Mann
Lead Engineer & Architect
HostMySite.com


On Tue, Apr 15, 2014 at 3: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 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/yyyy')#">
> </cfloop>
>
> But now I have it pointed at a different process and here's what happens:
>
>    1. I tell utility to "go"
>    2. Using Fusion Reactor, I can see that
>    http://production.com/?Date=4/15/2014 has been called and is running on
>    production
>    3. When, that finishes, http://production.com/?Date=4/14/2014 is
> *not* called
>    but my utility keeps "spinning" as if it's still doing its thing
>
> Any ideas?
>
> --
> John Bliss - http://www.linkedin.com/in/jbliss
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358337
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to