After some basic testing, I narrowed the issue down to the call of the
onSessionStart method.  However, it did not appear to have anything to
do with the user.cfc component.

Once I put everything back, the web site is faster than teflon snot on a
banana peel.

Unless someone has any advice on where to start looking for bottlenecks,
I'm gonna start dissecting the site tomorrow.

Thanks,
Mike

-----Original Message-----
From: Dawson, Michael [mailto:[email protected]] 
Sent: Thursday, June 18, 2009 2:31 PM
To: cf-talk
Subject: RE: Converted Application.cfm to Application.cfc and Having
Problems


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:323676
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to