Just curious if anyone else here as seen this error before:
Element EXCEPTION.CAUSE is undefined in ARGUMENTS.
The error occurred on line 42.
We're only getting it from our public Wheels apps, and only on rare
occasion. We can't duplicate it, yet I probably see about 1 or 2 of
these errors come through a day. Any thoughts?
Thanks.
In cfmlerror.cfm, change line12 from:
<cfif StructKeyExists(arguments.exception.cause, "tagContext") &&
ArrayLen(arguments.exception.cause.tagContext)>
to
<cfif StructKeyExists(arguments.exception, "cause") &&
StructKeyExists(arguments.exception.cause, "tagContext") &&
ArrayLen(arguments.exception.cause.tagContext)>
StackTrace: java.lang.IllegalStateException: Session is invalid
We're hoping it's the issue address in this latest CF9 update:
http://www.coldfusionjedi.com/index.cfm/2011/9/16/ColdFusion-901-CHF-2-Released
I'll post again once we get the patch in to let eveyone know if that
fixes it.
Thanks!
-Brian