I have a CFC file that consistantly times out. Even if I put the CFSETTING 
REQUESTTIMEOUT to a high setting it seems to ignore it. Is there a limit to 
what can be set? Could it be something on my IIS server that is trumping the 
CFSETTING? What should I be looking for to increase the timeout?

Thank you

My code is as follows
<cffunction name="Upload" access="remote" returnType="any">
<cfargument name="IViewFileName" type="string" required="yes" hint="Filename to 
be used">
<cfargument name="IViewFileObject" type="any" required="yes" hint="The base64 
text of the uploaded file">
<cfsetting requesttimeout="600">
<cfset filename="#arguments.IViewFileName#">
<cffile action="write" file="#CurrentDir##filename#" 
Output="#ToBinary(IViewFileObject)#">
</cffunction> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290954
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