API Error: Can not resolve PropertyFilter with id 'coldfusion.runtime.Struct'; no FilterProvider con
Hello All,
We have a collection of API calls that can successfully be called/run from several windows server instances of CF 2023. A colleague on intel Mac CF 2018 and one on windows CF 2023 can also successfully call/run any of our API functionality. On my local development instance of ColdFusion 2023 (ColdFusion 2023 MacBook Pro M2 macOS Sonoma) I consistently get the same error on every API call I try and leverage.
Can not resolve PropertyFilter with id 'coldfusion.runtime.Struct'; no FilterProvider configuredI have been unable to make any headway on figuring out why i am the only one getting this error message.
I am posting this discussion to hopefully find someone that may have some additional suggestions for me.
I can share more examples of some of the code but thought I would start with the error message and the explanation that this is only happening to me as the underlying CF code is working in all other environments.
Basic Code Same Error:
<cffunction name="getQuickTest" access="remote" output="false" returntype="Struct" restpath="test/outputValue/" httpmethod="get" produces="application/JSON">
<cfset var myOneStruct = {Number:"1",Again:"2",More:"3",Lastly:"4"}>
<cfset var returnStruct = StructNew()>
<cfset variables.result = "success" />
<cfscript>
myOneStruct = {Number:"1",Again:"2",More:"3",Lastly:"4"};
returnStruct = StructNew();
variables.result = "success";
returnStruct = myOneStruct;
</cfscript>
<cfreturn returnStruct>
</cffunction>
Thanks in advance Steve.
