>'A space-delimited list of URL substrings to ignore for this rule.
>For example, to exclude "longreport.cfm" and all files in the
>"/batchjobs/" folder, type:
>longreport.cfm /batchjobs/'

But can you ignore based on querystrings? My software is Fusebox-based,
so pretty much everything runs through the index.cfm file. It would only
be for a specific fuseaction that I would need the timeout ignored.


Yes, it is possible.  I use Fusebox, and had to figure out myself how to
do it.

The trick is to use a method SeeFusion makes available called
setRequestName().  This is how it works:


<cfif listfindnocase("exception list",fusebox.fuseaction)>
<cfset seefusion = createObject("java", "com.seefusion.SeeFusion")>
<cfset seefusion.setRequestName("seefusion_rule_exception_" &
replacenocase(cgi.script_name,"/",""))>
</cfif>

Now SeeFusion reports the file being requested as
"seefusion_rule_exception_index.cfm" instead of just "index.cfm"

Very handy indeed.  

Good luck.  :-P

~Brad


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265342
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to