coldfusion processing does not start until *AFTER* the file is
completely posted to the server.  So I'm not sure that would have
anything to do with it anyway.

That being said.. what exactly is the error you're seeing?  Is it a
timeout error showing in the application.log?

(also, it's been suggested that this doesn't work in a CFC anyway, but
I think it does)

Rick

On 10/12/07, Shane Trahan <[EMAIL PROTECTED]> wrote:
> 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 involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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

Reply via email to