Re: CFFILE / CFCATCH

2011-07-04 Thread Mack

On Fri, Jul 1, 2011 at 4:16 AM, morgan l greyk...@gmail.com wrote:

 Looks like you're the victim of scenario #2 in this KB article:
 http://kb2.adobe.com/cps/181/tn_18171.html

That article applies to CF5 and I doubt Jenny is running CF5.

-- 
Mack

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346065
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Tracking the number of simultaneous AJAX requests to a CFC

2011-07-04 Thread Byte Me

Is there a limit to the number of simultaneous AJAX requests that will run? For 
example, in my Coldfusion Administrator in the “Request Tuning” section, 
the setting “Maximum number of simultaneous Template requests” is set to 
20. So if more than 20 Template requests come in at one time, the remainder are 
queued (lets say I got 30 requests for index.cfm), and if any of those Template 
requests remained in queue for longer than 60 seconds (that is my setting for 
“Timeout request waiting in queue...”) then those requests timeout and are 
not processed.. The setting, “Maximum number of simultaneous CFC function 
requests” is set to 10, which is the maximum number of CFC methods that can 
be processed concurrently via HTTP. Now since AJAX uses XMLHttpRequest, does 
this mean that the AJAX requests to CFC's are not counted as part of the limit 
set by the above setting (...simultaneous CFC function...)?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346066
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Tracking the number of simultaneous AJAX requests to a CFC

2011-07-04 Thread Byte Me

OK, I think I found the answer. First off there is no such thing a an 
XMLHttpRequest, that's just the name of the object, and from what I've read in 
one of my books (Ajax, Your visual blueprint for creating rich Internet 
applications) an Ajax request is an http request, so if that is the case then 
the number of simultaneous requests with Ajax to cfc's are limited by the 
setting Maximum number of simultaneous CFC function requests. If anyone 
thinks different, please let me know. thanks. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:346067
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm