QoQ on CF 2021 Enterprise errors
We just installed CF 2021 Enteprise on our Dev server (Win Server 2019) last week.
<cfquery name="qUserGroups" dbtype="query">
SELECT groupName FROM request.store.groups
WHERE groupID IN (#qUsers.userGroupList#)
</cfquery>Whenever a Query of Query gets a shared scope variable, this error occurs:
"Error casting an object of type class coldfusion.runtime.RequestScope cannot be cast to class coldfusion.runtime.Struct (coldfusion.runtime.RequestScope and coldfusion.runtime.Struct are in unnamed module of loader coldfusion.bootstrap.BootstrapClassLoader @69909c14) to an incompatible type. This usually indicates a programming error in Java, although it could also mean you have tried to use a foreign object in a different way than it was designed."
I have also tried setting the value to a local variable or even the application scope, but the error is the same. Help!
