Thanks Sean, yes I double checked all that even to the point of cutting and pasting the exact same argument name from the CFC to the ColdSpring XML:

    <cffunction name="init" access="public" returntype="any" output="false"  hint="I perform all initialization">
        <cfargument name="reactor"         type="reactor.reactorFactory" required="true" />
        <cfargument name="sessionManager" type="any" required="true" hint="Reference to the session manager." />
        <cfset variables.instance = structNew() />
        <cfscript>
            setReactor( reactor=arguments.reactor );
            setSessionManager(arguments.sessionManager);
        </cfscript>
        <cfreturn this />
    </cffunction>

Any other idears? Thanks.

On 4/4/06, Sean Corfield < [EMAIL PROTECTED]> wrote:
On 4/4/06, Brian Kotek < [EMAIL PROTECTED]> wrote:
> Also just to add a bit more info, I'm seeing these in the exceptions section
> in the debug output:
>
> 14:17:32.032 - coldspring.beanDefException - in
> D:\Inetpub\wwwroot\coldspring\beans\BeanDefinition.cfc :
> line 136 property requested does not exist for bean: sessionManager
>
>
> 14:17:32.032 - coldspring.beanDefException - in
> D:\Inetpub\wwwroot\coldspring\beans\BeanDefinition.cfc :
> line 108 constructor-arg requested does not exist for bean: sessionManager

What does your userManager init() method look like? The names
specified in the constructor-arg keys must exactly match the argument
names for your init() method.
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


Reply via email to