I have all the business logic in CFC's, but I am using many objects for
these CFC's that pull the data in the application scope.


For example, in my admin application I am using this to refresh my data set
once the data has been manipulated.


<cfscript>


application.oPartnerCollection.Select_Corps(oPartner.Partner_ID,"0","true");
</cfscript>


Now, how could I call this same object from the differenct application? You
would think since it is in memory, there has to be way that I can retreive
it.


Thx so far - your making think about ways that I can correct this in the
future.


Ricky

  _____  

From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 09, 2003 11:00 AM
To: CF-Talk
Subject: RE: Application variables between two applications

> The admin tool is for the other website. So in a nutshell,
> are you suggesting that I just rename the application name in
> the other website to match name of the application in the admin?
>

No, not if the applications aren't truly the same.

> Server variables - hmm...that might be a thought.
>

Just be aware that other apps on the box will also have access to the data.
Really only an issue if you are on a shared machine.

> I would prefer to keep them in the app scope, but if I have
> to use the server scope that is ok.

You can consider using CFCs as well. App1 would ping App2's CFC and request
the data from it.
  _____
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to