Hey guys,

 

I'm having trouble trying to implement a security controller into my MG
application. It hasn't even got any functions in it yet, but it keeps
crashing my app, no errors, just a blank screen in front of me.

 

Here is my model-glue.xml definition for the controller.

 

            <controller name="SecurityController"
type="Controller.Security">

            </controller>

 

And the code from within the Security.cfc

 

<cfcomponent name="Security" displayname="Security Controller" hint="I
handle security integration." output="false">

      

      <cffunction name="onRequestStart" access="public" returnType="void"
output="false">

            <cfargument name="Event" required="true" type="any" hint="The
event that initiate the contorller method" />

      </cffunction>

 

      <cffunction name="onQueueComplete" access="public" returnType="void"
output="false">

            <cfargument name="Event" required="true" type="any" hint="The
event that initiate the contorller method" />

      </cffunction>

 

      <cffunction name="onRequestEnd" access="public" returnType="void"
output="false">

            <cfargument name="Event" required="true" type="any" hint="The
event that initiate the contorller method" />

      </cffunction>

      

</cfcomponent>

 

Any ideas why this is causing me problems? As soon as I remove the
controller reference from the XML, it works just fine.

 

Thanks,

 

Rob



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion MX7 by AdobeĀ®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274576
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