BTW, this is all I have in the Application.cfc at this moment.

<cfcomponent output="false">

<cfset this.name = "AceLink">

<cfset this.customTagPaths =
"D:\Inetpub\AceLink\custtags,D:\Inetpub\AceLink">
<cfset this.mappings["/"] = "D:\Inetpub\AceLink">

<cfset this.sessionManagement = "true">
<cfset this.sessionTimeout = createTimeSpan(0, 0, 15, 0)>
<cfset this.clientManagment = "false">
<cfset this.setClientCookies = "false">

<cffunction name="onSessionStart" access="public" returntype="void"
output="no">
        <cfset session.objUser = CreateObject("component",
"cfc.User.User")>
        <!---Allow user to enter "acenet\username", "acenet/username" or
"username" or "[email protected]".--->
        <cfset
session.objuser.init(lCase(listLast(listFirst(cgi.auth_user, "@"),
"\/")))>
</cffunction>

</cfcomponent> 


Thanks,
Mike

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323661
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to