CB 2.6.4
Transfer 1.1
Coldspring 1.2
I have a bean in coldspring.xml.cfm called SecurityService located
under my web root. When I attempt to load the app with this
declaration, the add bombs out with a lock error pointing to
Coldbox.cfc. Subsequent attempt to load results in this JRun servlet
error..
500
ROOT CAUSE:
coldfusion.runtime.EventHandlerException: Event handler exception.
at coldfusion.runtime.AppEventInvoker.onRequestStart(AppEventInvoker.java:229)
at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:264)
at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
................
I've tried emptying SecurityService.cfc except for the <cfcomponent>
tags... and also removing autowire=true from the meta data.
The app _will_ load if I change the bean id to something other than
SecurityService. I've found samples on CB's website using a bean with
this name so I'd be surprised to find this was a reserved word.
Anybody have any idea where to go from here?
My bean declaration is simply...
<bean id="SecurityService" class="model.SecurityService" />
I've commented out any calls to SecurityService as well.