RE: Nested CFC Method calls

2005-07-18 Thread Ben Nadel
could also change the HasRole method, but that is really just a property getter and changing the rules in that would not feel "right". Thanks, Ben -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 3:01 PM To: CF-Talk Subject: Re:

Re: Nested CFC Method calls

2005-07-18 Thread Barney Boisvert
Your security manager isn't applying the roles, the code calling the security manager is. That is, this line: is applying the roles to the application, not the hasAccess method of the security manager. That line ought to read: ... It's still the CFIF applying the information, just it's g

RE: Nested CFC Method calls

2005-07-18 Thread Ben Nadel
application. That just made more sense in my mind. Thanks, Ben -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Monday, July 18, 2005 2:49 PM To: CF-Talk Subject: Re: Nested CFC Method calls Turn of the execution times in the CF debugging output. That's kno

Re: Nested CFC Method calls

2005-07-18 Thread Qasim Rasheed
Ben, If you have debugging turned on, I would say it is responsible for longer time. Try turning it off. HTH On 7/18/05, Ben Nadel <[EMAIL PROTECTED]> wrote: > I am trying to make a basic security controller for a web application > system. The idea is that there is a User CFC and a SecurityContr

Re: Nested CFC Method calls

2005-07-18 Thread Barney Boisvert
Turn of the execution times in the CF debugging output. That's known to make CFCs drag like nothing else. Turning it off makes things enormously faster. Though 60 milliseconds isn't particularly slow. Certainly not enough to warrant performance investigations. It could easily be explained away