Why do this work on my CF9 server but does not work on my CF8.0.1
arrayAppend(interceptors,
{class="coldbox.system.interceptors.SES",properties={configFile="config/
enviroments/dev_routes.cfm"}} );
here is the full version number 8,0,1,195765 and the Java Version
1.6.0_04
I don't believe that shorthand array and struct notation within function arguments is supported in cf 8. Change to:
myargs = {class="coldbox.system.interceptors.SES",properties={configFile="config/enviroments/dev_routes.cfm"}};
arrayappend(interceptors,myargs);
And it should work in CF 8.