RE: Scheduled tasks timeout vs. server timeout

2009-11-02 Thread Earl, George
Dave said: You can also drop it in the URL like something.cfm?requestTimeout=600 Not since CFMX: http://kb2.adobe.com/cps/194/tn_19438.html That would help to explain why it's not working. Cameron said: Not since CFMX: http://kb2.adobe.com/cps/194/tn_19438.html You know, I had a

Re: Scheduled tasks timeout vs. server timeout

2009-11-01 Thread Dave Watts
You can also drop it in the URL like something.cfm?requestTimeout=600 Not since CFMX: http://kb2.adobe.com/cps/194/tn_19438.html Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in

Re: Scheduled tasks timeout vs. server timeout

2009-11-01 Thread Cameron Childress
On Sun, Nov 1, 2009 at 4:49 PM, Dave Watts dwa...@figleaf.com wrote: You can also drop it in the URL like something.cfm?requestTimeout=600 Not since CFMX: http://kb2.adobe.com/cps/194/tn_19438.html You know, I had a suspicion it was deprecated but I didn't confirm it before I posted. For

Re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread James Holmes
You could cfschedule a new single run of the template with the chosen timeout. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/10/28 Earl, George george.e...@ssa.gov: We need to be able to manually run scheduled tasks that take longer to complete than our

RE: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Robert Harrison
Add CFSETTING to the page to override the server time out... cfsetting requesttimeout=54000 !--- sets timeout limit to 15 hours --- Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022

Re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Dave Watts
I understand that the timeout setting for scheduled tasks overrides the server timeout setting but I assume that works only when the task is run by the CF scheduler or by running it manually from within the CF Administrator, is this correct? Yes. When you run any CF URL directly, CF has no

RE: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Rick Faircloth
A couple of options come to mind... - use cfsetting requesttimeout = X on the task page before the code... that should override setting in administrator - that's the only way I can think of to override the administrator default - use cfthread to run your tasks in the browser - cfthread

re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Jason Fisher
You can put requestTimeout=[seconds] right into the URL, IIRC. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Cameron Childress
On Wed, Oct 28, 2009 at 8:41 AM, Earl, George george.e...@ssa.gov wrote: If we run a scheduled task manually as described above is cfsetting\requestTimeout in the code our only recourse for overriding the server timeout setting? You can also drop it in the URL like

RE: Scheduled tasks timeout vs. server timeout

2009-10-28 Thread Earl, George
I asked: If we run a scheduled task manually as described above is cfsetting\requestTimeout in the code our only recourse for overriding the server timeout setting? Thanks, everyone. We'll use ?requestTimeout=[seconds] appended to the URL for the scheduled task until we can get the