Re: Can you use a CFTHREAD inside an Ajax routine?

2015-03-16 Thread Michael Grant

I always just comment out the cfthread to single thread it and test there's
no errors.

On Monday, March 16, 2015, John Pullam jpul...@mcleansystems.com wrote:


 The original answer that this does work was enough to get me headed in the
 right direction. I eventually found a bug in my code; the CFTHREAD was
 starting up the task correctly.

 

~|
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:360264
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can you use a CFTHREAD inside an Ajax routine?

2015-03-16 Thread John Pullam

The original answer that this does work was enough to get me headed in the 
right direction. I eventually found a bug in my code; the CFTHREAD was starting 
up the task correctly. 

~|
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:360263
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Can you use a CFTHREAD inside an Ajax routine?

2015-03-12 Thread Bobby

When you say it doesn¹t generate any errors, do you mean that you¹ve
looked through the exception logs? Unless you are trapping it with
try/catch or a custom error handler, that¹s the only place you would
discover that an error happened in a cfthread that you are spawning and
forgetting.

On 3/5/15, 3:47 PM, John Pullam jpul...@mcleansystems.com wrote:


It seems to me that the CFTHREAD I attempt to start from inside an Ajax
routine (triggered by a CFWINDOW) never runs and doesn't generate any
error message. Can anyone advise if this is a legitimate thing to do?



~|
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:360243
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can you use a CFTHREAD inside an Ajax routine?

2015-03-12 Thread David Phelan

Steven,

What is it that is telling you that the thread is not running?  What is it 
supposed to do that it is not, manipulate the file system, execute a stored 
procedure?  Is it supposed to return a value that you are not seeing?  Remember 
that a function that initiates a thread will continue to run without waiting 
for the thread to finish unless a join action is performed.

Dave

-Original Message-
From: Bobby [mailto:bo...@acoderslife.com] 
Sent: Thursday, March 12, 2015 10:49 AM
To: cf-talk
Subject: Re: Can you use a CFTHREAD inside an Ajax routine?


When you say it doesn¹t generate any errors, do you mean that you¹ve looked 
through the exception logs? Unless you are trapping it with try/catch or a 
custom error handler, that¹s the only place you would discover that an error 
happened in a cfthread that you are spawning and forgetting.

On 3/5/15, 3:47 PM, John Pullam jpul...@mcleansystems.com wrote:


It seems to me that the CFTHREAD I attempt to start from inside an Ajax 
routine (triggered by a CFWINDOW) never runs and doesn't generate any 
error message. Can anyone advise if this is a legitimate thing to do?





~|
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:360256
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Can you use a CFTHREAD inside an Ajax routine?

2015-03-05 Thread DURETTE, STEVEN J

Yes, this works.  I do it for an application I'm working on.  The ajax call 
hits a page with a cfthread and it runs fine.

I do have problems when that cfthread calls other cfm/cfc pages that also have 
cfthread in them.  When that happens I get an error.

Steve


-Original Message-
From: John Pullam [mailto:jpul...@mcleansystems.com] 
Sent: Thursday, March 05, 2015 3:48 PM
To: cf-talk
Subject: Can you use a CFTHREAD inside an Ajax routine?


It seems to me that the CFTHREAD I attempt to start from inside an Ajax routine 
(triggered by a CFWINDOW) never runs and doesn't generate any error message. 
Can anyone advise if this is a legitimate thing to do? 



~|
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:360206
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm