Hi Marc,

Can't speak for the community, but here's something to think about. You have
40 projects on a server using Reactor. You're developing #41 which needs
latest and greatest features of Reactor 12.0, so you decide to upgrade from
11.1. Unfortunately, a couple of the necessary changes break backwards
compatibility in edge cases and your architecture is predicated on one of
those edge cases. With multiple versions or at least the capacity for
multiple versions, at least you don't have to fix 40 sites in one evening.

In general terms the ideal solution is as per Microsoft where each version
of the framework is "signed" and you assign a project to a given version.
Because you wouldn't want to change your mapping every time a minor version
came out, one approach would be predicated on being able to tell a given
install of Reactor what its mapping should be so you could create Reactor11
and Reactor12 mappings and assign each project to the appropriate version
for simple versioning. Another approach would be to call a version number in
the initial Reactor call and let Reactor itself handle running multiple
concurrent versions. This is a feature that few frameworks provide, but
eventually for high levels of adoption it does become necessary assuming
imperfect backwards compatibility and enough sites using the framework.

For now, as to recommended approaches, the definitive answer: "it depends"
->

Best Wishes,
Peter

On 12/14/06 8:13 AM, "Marc" <[EMAIL PROTECTED]> wrote:

> Is this how most of the community works, also?  My thought was that things
> were moving towards the "reusable code" paradigm to such an extent that
> reactor would simply become a centralized "platform" for use by whatever
> sites I chose to have on the server(s).  Is it considered a Bad Thing that
> all other sites would be forced to use the single (current) version of
> reactor?  If most people are giving each site their own instance of reactor,
> then that's what I'll do and be done with it :)
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Shannon Jackson
> Sent: Wednesday, December 13, 2006 9:30 AM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> 
> 
> My honest opinion?  If you are running a multi-host environment on that
> server, I think you should not map reactor and put the reactor framework in
> the root of your site anyways. If you have it mapped and you get one site
> working with a Reactor app all the other sites are going to be forced to
> used that same version.
>  
> - S
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Marc
> Sent: Wednesday, December 13, 2006 7:31 AM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
>  
> A little bit more progress.  Reactor is totally looking in the wrong place
> for that file, after it creates it:
>  
> In my infinite newbie-ism, i *just* realized that 'componentExists()' is not
> a native CF function... it appears in objectFactory.cfc at line 267.
>  
> I modified this function as follows:
>  
> <cffunction name="componentExists" access="private" hint="I indicate if a
> component exists" output="false" returntype="any" _returntype="boolean">
>   <cfargument name="name" hint="I am the name of the component in dot noted
> formated" required="yes" type="any" _type="string" />
>   <cfset var absPath = ExpandPath("/" & replace(arguments.name, ".", "/",
> "all") & ".cfc") />
>  
>     <!--- new block of code --->
>   <CFIF NOT FileExists(absPath)>
>    <CFDUMP var="#absPath#">
>    Does not exist.
>    <CFABORT>  
>   </CFIF>
> 
>   <cfreturn FileExists(absPath) />
>  </cffunction>
>  
> AND I GOT THIS:
>  
> C:\Advantex\Sites\Surveys\www\reactor\project\Surveys\Gateway\SurveyGateway.
> cfc
> Does not exist.
>  
> (Which, by the way, is a way more helpful error message than just
> "NotAllFilesExist", thank you very much.)
>  
> This error is absolutely correct - that file does not exist, THERE.
>  
> Why is it doing this -- Instead of looking in my reactor directory:
>  
> C:\Advantex\Sites\Common\reactor\project\Surveys\Gateway\SurveyGateway.cfc
>  
> It's looking for it under my application's path, as my more enhanced error
> message shows.
>  
> Again, it's CREATING the file in the right place, but then it's turning
> around and looking for it in the wrong place... unless there are TWO
> SurveyGateway.cfc's that are trying to be created and checked for existence
> or something.  Reactor gurus chime in here =)
>  
> The /reactor CF mapping exists, and points to
> C:\Advantex\Sites\Common\reactor\ (and in the "root" of that mapping is
> reactorFactory.cfc, per the Reactor installation instructions), and there's
> a CF mapping for my app, /Surveys, which points to
> C:\Advantex\Sites\Surveys.
>  
> Same as my dev box.  All files the same as my dev box.  But it's not
> throwing this on my dev box, with CF7, only on my prod box with CF6.1.
>  
> 'SupWitDat???
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Brad Haas
> Sent: Tuesday, December 12, 2006 11:17 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> Marc,
>  
> Have you tried instantiating that CFC outside site of Reactor?  Can you
> create a CFC by doing the following:
>  
> <cfset theMissingCFC = CreateObject("component","the.path.to.CFC")>
>  
> I'm think if the above fails, it may point you to an issue outside of
> reactor (permissions, mappings, etc.)  Of course it could fail and still be
> Reactors fault (generating some bad or incomplete code), but it might be
> something to try.
>  
> Brad
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] on behalf of Marc
> Sent: Tue 12/12/2006 11:02 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> My own box, i have complete control.  (tremendous cosmic power...!)
>  
> I did some CFDUMPing, and i see the exact CFC is it is "looking for".  And
> gosh darn it, it's right-freaking-there in the directory.  If i kill the
> entire project folder, the damn thing RECREATES the file and then says it
> can't find that very file!  Is that messed up, or what?
>  
> I'm giving up for the night.  It works on my staging server here in my
> office, and client can see it right now from there... but I have to deploy
> this app to the live server soon, and NOTHING i try is working.  XML,
> Mappings, Permissions, file existence... IT'S ALL THERE, but reactor is just
> choking.
>  
> I wonder if I should revert back to a prior build of reactor in svn... but
> then again, why would it work on my dev server, if it were broken in the
> trunk...  UGH.
>  
> I'm going now,  to open a hot dog stand on the beach.
>  
> m
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Brad Haas
> Sent: Tuesday, December 12, 2006 10:25 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> A couple of things:
>  
> (1) Is this on a dedicated box or is it a shared server?
>  
> (2) If it were me--I would once again blow away all the application data and
> project files and then run the reactor complier to regenerate all the files.
> Of course you'll probably have to reset the application scope afterwards if
> you are putting Reactor there.
>  
> I'm sure everything will work out for you.  If you search the mail archive,
> you'll find there have been several times that I've been in the same boat
> (different issues) as you and things usually get better after a good nights
> rest.
>  
> Good Luck,
> Brad
>  
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] on behalf of Marc
> Sent: Tue 12/12/2006 9:42 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> Dev machine is CF Ent 7, live servers are 6.1...   The only other difference
> is that on the dev machine, the site is in d:\advantex\sites\surveys and
> reactor is in d:\sites\common\reactor, while on the live site they are in
> the same directories but on the C drive.  mappings are set to reflect this
> difference.  
>  
> Again, on the live server, if I blow away the project directory, it gets
> "partially" recreated (surveyGateway and surveyMetaData) before throwing the
> error below.  According to the error, it is being thrown as a result of a
> call in \www\act_CreateReactorObjects.cfm, line 8, as follows:
>  
> 7  <CFIF NOT isDefined("application.SurveyGateway") OR
> (isDefined("attributes.reloadReactor"))>
> 8    <cfset application.SurveyGateway =
> application.Reactor.createGateway("Survey") />
> 9  </CFIF>
> Still works on the dev site though.  I've even gone so far as to pull down
> the current reactor directory using svn on both dev and live server,
> perfectly sync both the reactor directory and the website directory and all
> files, from (working) dev, to (broken) live server (including project
> folder), restarting CF on live server, and making sure both are in
> development mode.  It's just not working, and I've checked all that I know
> to check.  I must be an idiot.
>  
> How embarassing that I have this project done and ready to roll out, and I
> can't do it, and can't figure out why.
>  
>  
> Maybe I'll just give up on trying anything new, 'cause no matter how simple
> the project, I end up getting burned and losing time and money.  If i just
> go back to my simple little non-oo, non-cfc, non-reactor fusebox 3 apps,
> maybe I can be productive again, feed my family, and maybe, just maybe, get
> a day off every now and then.  (Sorry.  I'm just frustrated as hell now.)
>  
> The error again, for reference...
>  
> The error occurred in
> C:\Advantex\Sites\common\reactor\core\objectFactory.cfc: line 261
> Called from C:\Advantex\Sites\common\reactor\core\objectFactory.cfc: line
> 153
> Called from C:\Advantex\Sites\common\reactor\core\objectFactory.cfc: line
> 148
> Called from C:\Advantex\Sites\common\reactor\reactorFactory.cfc: line 53
> Called from C:\Advantex\Sites\Surveys\www\act_CreateReactorObjects.cfm: line
> 8
> Called from C:\Advantex\Sites\Surveys\www\fbx_Settings.cfm: line 117
> Called from C:\Advantex\Sites\Surveys\www\fbx_Fusebox30_CF50.cfm: line 161
> Called from C:\Advantex\Sites\Surveys\www\fbx_Fusebox30_CF50.cfm: line 3
> Called from C:\Advantex\Sites\Surveys\www\fbx_Fusebox30_CF50.cfm: line 1
> Called from C:\Advantex\Sites\Surveys\www\index.cfm: line 12
> 259 :    <cfthrow
> type="reactor.objectFactory.getObjectDetails.NotAllFilesExist" />
> 260 :   <cfelseif NOT componentExists(result.project)>
> 261 :    <cfthrow
> type="reactor.objectFactory.getObjectDetails.NotAllFilesExist" />
> 262 :   </cfif>
> 263 :   
>  
> Please try the following:
> Check the ColdFusion documentation to verify that you are using the correct
> syntax.
> Search the Knowledge Base to find a solution to your problem.
>  
> Browser   Opera/9.00 (Windows NT 5.2; U; en)
> Remote Address   216.93.168.202
> Referrer   
> Date/Time   12-Dec-06 06:28 PM
>  
> Stack Trace 
> at
> cfobjectFactory2ecfc190148186$funcGETOBJECTDETAILS.runFunction(C:\Advantex\S
> ites\common\reactor\core\objectFactory.cfc:261) at
> cfobjectFactory2ecfc190148186$funcCREATE.runFunction(C:\Advantex\Sites\commo
> n\reactor\core\objectFactory.cfc:153) at
> cfobjectFactory2ecfc190148186$funcCREATE.runFunction(C:\Advantex\Sites\commo
> n\reactor\core\objectFactory.cfc:148) at
> cfreactorFactory2ecfc808435307$funcCREATEGATEWAY.runFunction(C:\Advantex\Sit
> es\common\reactor\reactorFactory.cfc:53) at
> cfact_CreateReactorObjects2ecfm1039143409.runPage(C:\Advantex\Sites\Surveys\
> www\act_CreateReactorObjects.cfm:8) at
> cffbx_Settings2ecfm1063213755.runPage(C:\Advantex\Sites\Surveys\www\fbx_Sett
> ings.cfm:117) at
> cffbx_Fusebox30_CF502ecfm1511070604._factor4(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:161) at
> cffbx_Fusebox30_CF502ecfm1511070604._factor6(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:3) at
> cffbx_Fusebox30_CF502ecfm1511070604.runPage(C:\Advantex\Sites\Surveys\www\fb
> x_Fusebox30_CF50.cfm:1) at
> cfindex2ecfm1951772936.runPage(C:\Advantex\Sites\Surveys\www\index.cfm:12)
>  
> coldfusion.runtime.CustomException:
>  at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:124)
>  at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>  at
> cfobjectFactory2ecfc190148186$funcGETOBJECTDETAILS.runFunction(C:\Advantex\S
> ites\common\reactor\core\objectFactory.cfc:261)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:338)
>  at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
>  at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
>  at
> coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:
> 250)
>  at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
>  at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:165)
>  at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:1768)
>  at
> cfobjectFactory2ecfc190148186$funcCREATE.runFunction(C:\Advantex\Sites\commo
> n\reactor\core\objectFactory.cfc:153)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:338)
>  at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
>  at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
>  at
> coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:
> 250)
>  at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
>  at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:165)
>  at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:1768)
>  at
> cfobjectFactory2ecfc190148186$funcCREATE.runFunction(C:\Advantex\Sites\commo
> n\reactor\core\objectFactory.cfc:148)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:338)
>  at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
>  at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
>  at
> coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:
> 250)
>  at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
>  at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:165)
>  at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:192)
>  at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:130)
>  at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1622)
>  at
> cfreactorFactory2ecfc808435307$funcCREATEGATEWAY.runFunction(C:\Advantex\Sit
> es\common\reactor\reactorFactory.cfc:53)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:338)
>  at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
>  at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
>  at
> coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:
> 250)
>  at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
>  at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
>  at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:165)
>  at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:192)
>  at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:130)
>  at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1622)
>  at
> cfact_CreateReactorObjects2ecfm1039143409.runPage(C:\Advantex\Sites\Surveys\
> www\act_CreateReactorObjects.cfm:8)
>  at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>  at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>  at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>  at
> cffbx_Settings2ecfm1063213755.runPage(C:\Advantex\Sites\Surveys\www\fbx_Sett
> ings.cfm:117)
>  at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>  at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>  at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>  at
> cffbx_Fusebox30_CF502ecfm1511070604._factor4(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:161)
>  at
> cffbx_Fusebox30_CF502ecfm1511070604._factor6(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:3)
>  at
> cffbx_Fusebox30_CF502ecfm1511070604.runPage(C:\Advantex\Sites\Surveys\www\fb
> x_Fusebox30_CF50.cfm:1)
>  at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>  at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>  at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
>  at
> cfindex2ecfm1951772936.runPage(C:\Advantex\Sites\Surveys\www\index.cfm:12)
>  at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
>  at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
>  at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:62)
>  at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
>  at
> coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
>  at coldfusion.filter.PathFilter.invoke(PathFilter.java:80)
>  at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
>  at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
>  at
> coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistence
> Filter.java:28)
>  at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
>  at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
>  at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
>  at coldfusion.CfmServlet.service(CfmServlet.java:105)
>  at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
>  at com.seefusion.Filter.doFilter(Filter.java:49)
>  at com.seefusion.SeeFusion.doFilter(SeeFusion.java:1471)
>  at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
>  at jrun.servlet.FilterChain.service(FilterChain.java:101)
>  at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
>  at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
>  at
> jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
>  at
> jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
>  at
> jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:192)
>  at
> jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
> 348)
>  at
> jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
> )
>  at
> jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:29
> 4)
>  at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
>  
>  
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Shannon Jackson
> Sent: Tuesday, December 12, 2006 2:17 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> Was your dev machine CF6.1 too?
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Marc
> Sent: Tuesday, December 12, 2006 1:12 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
>  
> it's creating the project folder, the folder for this particular project,
> and some of the subfolders.  it's definitely there.
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Shannon Jackson
> Sent: Tuesday, December 12, 2006 1:52 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
> This error is happens when reactor is checking to see if your project folder
> exists on the server under the reactor mapping.  - S.
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Marc
> Sent: Tuesday, December 12, 2006 12:43 PM
> To: [email protected]
> Subject: RE: [Reactor for CF] URGENT - deployment to live site fails
>  
> Restarted several times, much to the dismay of our clients, I am sure.
>  
> Cleared project files.
>  
> Cleared cache.
>  
> Server where problems abound is CF6.1, if that matters.
>  
> DB Schema is exact.
>  
> Could the error message be ANY MORE VAGUE?  This has turned into a
> nightmare.  All I want to do is launch my project.
>  
> 
>   _____  
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> Behalf Of Dan Wilson
> Sent: Tuesday, December 12, 2006 1:18 PM
> To: [email protected]
> Subject: Re: [Reactor for CF] URGENT - deployment to live site fails
> If you've cleared your cache and project files, two things that come to mind
> are:
> 
> Restart the CF server, if possible.
> Check the database to make sure it is exactly as the development schema..
> 
> dw
> On 12/12/06, Marc <[EMAIL PROTECTED]> wrote:
> Using CF 7 Ent in my office, my app works fine.
> 
> Just attempted to deploy to live site, and am getting this error (sorry for
> the html, digest users!!)
> What does this mean??  Reactor is mapped properly, project directory was
> cleared, but this looks like "NotAllFilesExist" is the error even though
> there is no actual error message...
> Urgent, because project was meant to be online for client review by noon...
> thanks in advance! :)  (God, i'm starting to really hate computers.)
> 
> Error Occurred While Processing Request
> 
> 
>  
>  
> 
>  
> 
>  
>  
> 
> The error occurred in
> C:\Advantex\Common\Reactor\reactor\core\objectFactory.cfc: line 261
> Called from C:\Advantex\Common\Reactor\reactor\core\objectFactory.cfc: line
> 153
> Called from C:\Advantex\Common\Reactor\reactor\core\objectFactory.cfc: line
> 148
> Called from C:\Advantex\Common\Reactor\reactor\reactorFactory.cfc: line 53
> Called from C:\Advantex\Sites\Surveys\www\act_CreateReactorObjects.cfm: line
> 8
> Called from C:\Advantex\Sites\Surveys\www\fbx_Settings.cfm: line 117
> Called from C:\Advantex\Sites\Surveys\www\fbx_Fusebox30_CF50.cfm: line 161
> Called from C:\Advantex\Sites\Surveys\www\fbx_Fusebox30_CF50.cfm: line 3
> Called from C:\Advantex\Sites\Surveys\www\fbx_Fusebox30_CF50.cfm: line 1
> Called from C:\Advantex\Sites\Surveys\www\index.cfm: line 12
> 
> 259 :                  <cfthrow
> type="reactor.objectFactory.getObjectDetails.NotAllFilesExist" />
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
> 260 :          <cfelseif NOT componentExists(result.project)>
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>     261 :                      <cfthrow type="
> reactor.objectFactory.getObjectDetails.NotAllFilesExist" />
> 262 :          </cfif>
> 263 :          
> 
>   _____  
> 
>  
> 
> Please try the following:
> * Check the ColdFusion documentation
> <http://www.macromedia.com/go/proddoc_getdoc>  to verify that you are using
> the correct syntax.
> 
> * Search the Knowledge Base
> <http://www.macromedia.com/support/coldfusion/>  to find a solution to your
> problem. 
> 
> 
> Browser  
> Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1) Gecko/20061010
> Firefox/2.0
> 
> Remote Address  
> 170.215.208.51 <http://170.215.208.51/>
> 
> Referrer  
>  
> 
> Date/Time  
> 12-Dec-06 09:26 AM
>  
> 
> Stack Trace 
> 
> at
> cfobjectFactory2ecfc2137280123$funcGETOBJECTDETAILS.runFunction(C:\Advantex\
> Common\Reactor\reactor\core\objectFactory.cfc:261) at
> cfobjectFactory2ecfc2137280123$funcCREATE.runFunction(C:\Advantex\Common\Rea
> ctor\reactor\core\objectFactory.cfc:153) at
> cfobjectFactory2ecfc2137280123$funcCREATE.runFunction(C:\Advantex\Common\Rea
> ctor\reactor\core\objectFactory.cfc:148) at
> cfreactorFactory2ecfc1022698718$funcCREATEGATEWAY.runFunction(C:\Advantex\Co
> mmon\Reactor\reactor\reactorFactory.cfc:53) at
> cfact_CreateReactorObjects2ecfm1039143409.runPage(C:\Advantex\Sites\Surveys\
> www\act_CreateReactorObjects.cfm:8) at
> cffbx_Settings2ecfm1063213755.runPage(C:\Advantex\Sites\Surveys\www\fbx_Sett
> ings.cfm:117) at
> cffbx_Fusebox30_CF502ecfm1511070604._factor4(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:161) at
> cffbx_Fusebox30_CF502ecfm1511070604._factor6(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:3) at
> cffbx_Fusebox30_CF502ecfm1511070604.runPage(C:\Advantex\Sites\Surveys\www\fb
> x_Fusebox30_CF50.cfm:1) at
> cfindex2ecfm1951772936.runPage(C:\Advantex\Sites\Surveys\www\index.cfm:12)
> coldfusion.runtime.CustomException:
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:124)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._emptyTag
> (CfJspPage.java:1871)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cfobjectFactory2ecfc2137280123$funcGETOBJECTDETAILS.runFunction(C:\Advantex\
> Common\Reactor\reactor\core\objectFactory.cfc:261)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:338)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>     
>         at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java
> :250)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:165)
> 
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:1768)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cfobjectFactory2ecfc2137280123$funcCREATE.runFunction(C:\Advantex\Common\Rea
> ctor\reactor\core\objectFactory.cfc:153)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke
> (UDFMethod.java:338)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke
> (UDFMethod.java:250)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java
> :165)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:1768)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cfobjectFactory2ecfc2137280123$funcCREATE.runFunction(C:\Advantex\Common\Rea
> ctor\reactor\core\objectFactory.cfc:148)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke
> (UDFMethod.java:338)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke
> (UDFMethod.java:250)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java
> :165)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:192)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:130)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1622)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cfreactorFactory2ecfc1022698718$funcCREATEGATEWAY.runFunction(C:\Advantex\Co
> mmon\Reactor\reactor\reactorFactory.cfc:53)
> 
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:338)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:44)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:286)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke
> (UDFMethod.java:250)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:53)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:203)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java
> :165)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:192)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:130)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:1622)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cfact_CreateReactorObjects2ecfm1039143409.runPage(C:\Advantex\Sites\Surveys\
> www\act_CreateReactorObjects.cfm:8)
> 
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cffbx_Settings2ecfm1063213755.runPage(C:\Advantex\Sites\Surveys\www\fbx_Sett
> ings.cfm:117)
> 
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cffbx_Fusebox30_CF502ecfm1511070604._factor4(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:161)
> 
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cffbx_Fusebox30_CF502ecfm1511070604._factor6(C:\Advantex\Sites\Surveys\www\f
> bx_Fusebox30_CF50.cfm:3)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> cffbx_Fusebox30_CF502ecfm1511070604.runPage(C:\Advantex\Sites\Surveys\www\fb
> x_Fusebox30_CF50.cfm:1)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at 
> coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:1871)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at cfindex2ecfm1951772936.runPage
> (C:\Advantex\Sites\Surveys\www\index.cfm:12)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:147)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:357)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.CfincludeFilter.invoke
> (CfincludeFilter.java:62)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:107)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:43)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.PathFilter.invoke
> (PathFilter.java:80)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:47)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.ClientScopePersistenceFilter.invoke
> (ClientScopePersistenceFilter.java:28)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:35)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:43)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.filter.DatasourceFilter.invoke
> (DatasourceFilter.java:22)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at coldfusion.CfmServlet.service(CfmServlet.java:105)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at com.seefusion.Filter.doFilter(Filter.java:49)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at com.seefusion.SeeFusion.doFilter
> (SeeFusion.java:1471)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrun.servlet.FilterChain.service(FilterChain.java:101)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrun.servlet.JRunInvokerChain.invokeNext
> (JRunInvokerChain.java:42)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:252)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrun.servlet.jrpp.JRunProxyService.invokeRunnable
> (JRunProxyService.java:192)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:
> 348)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at
> jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:451
> )
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable
> (ThreadPool.java:294)
> 
> 
>     
> 
> 
>     
>     
> 
> 
>     
> 
> 
>     
>     
>         at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
>  
> 
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> -- --
> Reactor for ColdFusion Mailing List
> [email protected]
> Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
> <http://www.mail-archive.com/reactor%40doughughes.net/> 
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> -- -- 
> 
> 





-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

Reply via email to