Yep thats what I ended up doing. The code

        (Locale)ExpressionEvaluatorManager.evaluate("locale", 
expr,Locale.class, this, pageContext)

was working against standard.jar (1.0).So just not sure why this is breaking 
all of a sudden.

Thanks,

Mujahid

Frank W. Zammetti wrote:

I'm not sure about the convertor, but could you instead just do:

String localCode = (String)ExpressionEvaluatorManager.evaluate("locale",
expr, String.class, this, pageContext);
Locale locale = new Locale(localCode);

At least that way your only asking the ExpressionEvaluatorManager to deal
with a basic type that by default it knows how to handle.  I know, it's
not one concise line then :)



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to