Re: question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-21 Thread Matthew Friedman

btw a backup is to also have a CFERROR or default error template so u can
catch cfcatch errors





We have a cferror on the application page and that is catching it at the end.

what I did was I did not know that there was an option to set the timeout at 
the cfinvoke calls. ends up one of the webservice took forever!!! over 45 
seconds to process sometimes so the page was timing out based on the cfadmin 
setting of 60 seconds.

The issue I could not understand it the log always said it was due to a cfmail 
time out and that is what I think through me through a loop.


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


question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-20 Thread Matthew Friedman

We are getting this error to happend and I am trying to figure out how to do 
the following.

what we are doing is running muliple external processed - ie ending job posting 
information out to sites.
we are doing this in a trycatch and if the process errors out or we recieve 
an notice of a failure we send an email to an support group who looks at what 
is going on and jumps on it.

The cfmail is in the cfcatch and that is what is erroring out and then the 
user is seeing the custom error message.

we would like to make sure that they never see the error message just move 
along - not sure how we can do that.

the second question I have is if on of the web services we are going to take 40 
seconds to process - we have seen this - is the time out to the mail server 
part of the entire time out on the page request? or is this done inidividual 
and on request to the mail server is taking over 60 seconds.  We are trying to 
figure how how to solve this.

Any thougths would be great.

Matt Friedman
Life is too short to drink cheep beer 

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


Re: question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-20 Thread Michael Grant

It sounds like the code you have that errors is inside your cfcatch tag.
Can you post what the actual error is?


On Mon, Sep 20, 2010 at 4:40 PM, Matthew Friedman m...@hozgroup.com wrote:


 We are getting this error to happend and I am trying to figure out how to
 do the following.

 what we are doing is running muliple external processed - ie ending job
 posting information out to sites.
 we are doing this in a trycatch and if the process errors out or we
 recieve an notice of a failure we send an email to an support group who
 looks at what is going on and jumps on it.

 The cfmail is in the cfcatch and that is what is erroring out and then
 the user is seeing the custom error message.

 we would like to make sure that they never see the error message just move
 along - not sure how we can do that.

 the second question I have is if on of the web services we are going to
 take 40 seconds to process - we have seen this - is the time out to the mail
 server part of the entire time out on the page request? or is this done
 inidividual and on request to the mail server is taking over 60 seconds.  We
 are trying to figure how how to solve this.

 Any thougths would be great.

 Matt Friedman
 Life is too short to drink cheep beer

 

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


Re: question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-20 Thread Russ Michaels

Unless you have a CFABORT in your CFCATCH i'm sure the default behaviour is
for CF to continue executing any code after the CFTRY block.


On Mon, Sep 20, 2010 at 9:40 PM, Matthew Friedman m...@hozgroup.com wrote:


 We are getting this error to happend and I am trying to figure out how to
 do the following.

 what we are doing is running muliple external processed - ie ending job
 posting information out to sites.
 we are doing this in a trycatch and if the process errors out or we
 recieve an notice of a failure we send an email to an support group who
 looks at what is going on and jumps on it.

 The cfmail is in the cfcatch and that is what is erroring out and then
 the user is seeing the custom error message.

 we would like to make sure that they never see the error message just move
 along - not sure how we can do that.

 the second question I have is if on of the web services we are going to
 take 40 seconds to process - we have seen this - is the time out to the mail
 server part of the entire time out on the page request? or is this done
 inidividual and on request to the mail server is taking over 60 seconds.  We
 are trying to figure how how to solve this.

 Any thougths would be great.

 Matt Friedman
 Life is too short to drink cheep beer

 

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


Re: question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-20 Thread Russ Michaels

btw a backup is to also have a CFERROR or default error template so u can
catch cfcatch errors

On Tue, Sep 21, 2010 at 12:21 AM, Russ Michaels r...@michaels.me.uk wrote:

 Unless you have a CFABORT in your CFCATCH i'm sure the default behaviour is
 for CF to continue executing any code after the CFTRY block.


 On Mon, Sep 20, 2010 at 9:40 PM, Matthew Friedman m...@hozgroup.comwrote:


 We are getting this error to happend and I am trying to figure out how to
 do the following.

 what we are doing is running muliple external processed - ie ending job
 posting information out to sites.
 we are doing this in a trycatch and if the process errors out or we
 recieve an notice of a failure we send an email to an support group who
 looks at what is going on and jumps on it.

 The cfmail is in the cfcatch and that is what is erroring out and then
 the user is seeing the custom error message.

 we would like to make sure that they never see the error message just move
 along - not sure how we can do that.

 the second question I have is if on of the web services we are going to
 take 40 seconds to process - we have seen this - is the time out to the mail
 server part of the entire time out on the page request? or is this done
 inidividual and on request to the mail server is taking over 60 seconds.  We
 are trying to figure how how to solve this.

 Any thougths would be great.

 Matt Friedman
 Life is too short to drink cheep beer

 

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