Jeff Borisch wrote:
<!---if the FlcTechCert cfc is not instantiated then do it---> <cfif NOT IsDefined("application.FlcTechCert")> <cflock scope="application" timeout="10" type="exclusive"> <cfif NOT IsDefined("application.FlcTechCert")><cfinvoke component="FlcTechCert" method="init" returnvariable="application.FlcTechCert"></cfif> </cflock> </cfif>
I just created a test where I use the same code that I use in my small application. It works as I had hoped.
So I think my problem was an old version of the cfc stuck in one of the cluster machine's application scope. I created simple boot method that I can call that will clear all the stuff I set when the application is first hit. I just need to make sure I clear both machines in the cluster if I need to edit the persisted code.
False alarm. --jeff You are subscribed to cfcdev. To unsubscribe, please follow the instructions at http://www.cfczone.org/listserv.cfm CFCDev is supported by: Katapult Media, Inc. We are cool code geeks looking for fun projects to rock! www.katapultmedia.com An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
