Okay, I am still working on this and I have an idea of how I might be
able to accomplish this.

Here is what I have done so far and it appears to work.
My application name is farcry03.
In the farcry03/config/_serverSpecificVars.cfm I modified an entry
from:
//application.securitypackagepath = application.packagepath &
".security";
to:
application.securitypackagepath = "farcry.farcry03.packages.security";

Originally application.securitypackagepath is equal to:
farcry.farcry_core.packages.security
After the change, it points to a package directory under the
application directory.  So it changes to:
farcry.farcry03.packages.security

I create these cfc components that extend the ones in
farcry.farcry_core.packages.security.

For example, I create the following files in the directory
farcry03/packages/security.
authentication.cfc
authorisiation.cfc
init.cfc
NTsecurity.cfc
security.cfc
user.cfc

Each cfc file looks something like this:
<cfcomponent
extends="farcry.farcry_core.packages.security.authentication"
displayName="Authentication" hint="Security authentication
functions"></cfcomponent>

It is just a blank cfc that extends the one in the farcry_core.

Each cfc is the same name as the component in the farcry_core, but all
I did was extend the farcry_core security files so that they will
inherit everything from the farcry_core security components.

I restarted the server and everything appears to be working fine.
This is where I have left of so far.

Now I'll alter these components to do what I want them to do and see if
that provide any benefit without too much trouble.

Troy Simpson


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/farcry-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to