One common way to deal with this is to temporary switch config modes
based upon a URL param. In Application.cfc:
<cffunction name="onRequestStart" returntype="void" output="true"
hint="Run at the start of a page request.">
...
<cfif StructKeyExists(url, "reloadApp")>
<cfsetting requesttimeout="120" />
<cfset MACHII_CONFIG_MODE = 1 />
</cfif>
...
</cffunction>
You can reload your application on demand that way
http://mydoman.com/index.cfm?reloadApp
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to Mach-II for CFML list.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/mach-ii-for-coldfusion?hl=en
SVN: http://greatbiztoolsllc.svn.cvsdude.com/mach-ii/
Wiki / Documentation / Tickets:
http://greatbiztoolsllc.trac.cvsdude.com/mach-ii/
-~----------~----~----~----~------~----~------~--~---