Is there a way to reference an application variable stored in the scope of
app X from another application?
For example, an app called bigapp has an app variable called: application.x.
Is it possible to get to that variable from another application for example?
Thanks,
Rich
Rather hackish, but I've done this on occasion and it works:
<cfapplication name="myapp" />
<cfset application.myvar = "test" />
<cfapplication name="bigapp" />
<cfset request.temp = application.myOtherVar />
<cfapplication name="myapp" />
<cfset application.myOtherVar = request.temp />
Cheers,
barneyb
----- Excess quoted text cut - see Original Post for more -----