Hi,
I’m very new to Content Box and trying to get it setup. I’m trying to add it to an existing Coldbox 4.3 application. I’m following the instructions here (Existing Coldbox Application) : https://contentbox.ortusbooks.com/content/installation/existing_coldbox_application.html
After making the updates to ColdBox.cfc and Application.cfc when I do a “fwreinit=1” on my application I’m seeing this error:
`
coldfusion.runtime.CustomException: Error building: SettingService@cb -> The setProjection method was not found. Either there are no methods with the specified method name and argument types or the setProjection method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that match the provided arguments. If this is a Java object and you verified that the method exists, use the javacast function to reduce ambiguity. with constructor arguments: {}
The error occurred in C:/inetpub/wwwroot/coldbox/system/web/services/ModuleService.cfc: line 590
Called from C:/inetpub/wwwroot/coldbox/system/web/services/ModuleService.cfc: line 607
Called from C:/inetpub/wwwroot/coldbox/system/web/services/ModuleService.cfc: line 47
Called from C:/inetpub/wwwroot/coldbox/system/web/services/LoaderService.cfc: line 172
Called from C:/inetpub/wwwroot/coldbox/system/Bootstrap.cfc: line 102
Called from C:/inetpub/wwwroot/coldbox/system/Bootstrap.cfc: line 357
Called from C:/inetpub/wwwroot/mysite/Application.cfc: line 79
588 : // Do we need to throw exception?
589 : if( !isSimpleValue( exceptionUnloading ) ){
590 : throw( exceptionUnloading );
591 : }
592 :
Enter code here…
`