try {
ExpressionCompiler compiler = new ExpressionCompiler(actionString);
compiler.setVerifying(true);
ParserContext parserContext = new ParserContext();
//parserContext.setStrictTypeEnforcement(true);
compiler.compile(parserContext);
List mvelErrors = parserContext.getErrorList();
if (mvelErrors != null) {
for (Iterator iterator = mvelErrors.iterator(); iterator.hasNext(); ) {
Object error = iterator.next();
errors.add( new RuleFlowProcessValidationErrorImpl( RuleFlowProcessValidationError.ACTION_NODE_WITH_INVALID_ACTION, "name = " + actionNode.getName() + " " + error ) );