> Can I set a special RequestTimeout value for certain files
> that are located in the same directory using application.cfm?
If I understand correctly what you're trying to do, you can do that by using
CFLOCATION. You could add something like this to Application.cfm:
<cfif not IsDefined("URL.RequestTimeout")>
<cflocation url="#CGI.script_name#?RequestTimeout=9999999">
</cfif>
Of course, if you might already be using other URL variables, you'd have to
take that into account.
The reason you'd have to use CFLOCATION for this is that RequestTimeout has
to explicitly be placed in the URL string (you can't just set
URL.RequestTimeout in your code in the page for which you want to request
the timeout).
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: (202) 797-5496
fax: (202) 797-5444
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists