I'm trying to convert an Application.cfc to script. The original had this:
<cfcomponent displayname="Application" output="false">
<cfset this.name = "testing">
<cfset this.applicationTimeout = createTimeSpan(0,1,0,0)>
<cfset this.sessionManagement = true>
<cfset this.sessionTimeout = createTimeSpan(0,0,30,0)>
<cfsetting requesttimeout="20">
...
I can't figure out how to convert the cfsetting tag to script. The following attempts don't work:
setting requesttimeout="20"; // throws a "function keyword is missing in FUNCTION declaration." error.
setting( requesttimeout="20" ); // throws a "Variable SETTING is undefined." error.
It looks like Railo may be supporting it: http://wiki.getrailo.org/wiki/TAG:CFSETTING but I can't find an equivalent for the cfsetting tag in ColdFusion's documents: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7d68.html