In the context of RootContextTest.java,
there is an assignment "jspCtx.setAttribute("foo", "1");"
but when I tried to set "foo.bar" instead of "foo", it didn't work.
It probably didn't match the context in the scxml script (<if cond="${empty(
foo.bar)}">).
Tracing the EL parser, it divided two("foo" and "bar") as complex variable.
How can you solve this?Sungchan
