Re: Warning message when setting BigDecimal to list of bean

2009-09-14 Thread Steven Yang
://www.nabble.com/Warning-message-when-setting-BigDecimal-to-list-of-bean-tp25359072p25430438.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org

Re: Warning message when setting BigDecimal to list of bean

2009-09-14 Thread dusty
, there wont be any warning. I am not running under devMode = true. Is this a bug? or something else? Thanks -- View this message in context: http://www.nabble.com/Warning-message-when-setting-BigDecimal-to-list-of-bean-tp25359072p25430438.html Sent from

Re: Warning message when setting BigDecimal to list of bean

2009-09-14 Thread Steven Yang
-- View this message in context: http://www.nabble.com/Warning-message-when-setting-BigDecimal-to-list-of-bean-tp25359072p25437069.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: Warning message when setting BigDecimal to list of bean

2009-09-13 Thread dusty
am not running under devMode = true. Is this a bug? or something else? Thanks -- View this message in context: http://www.nabble.com/Warning-message-when-setting-BigDecimal-to-list-of-bean-tp25359072p25430438.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Warning message when setting BigDecimal to list of bean

2009-09-12 Thread Steven Yang
so...this is an OGNL error? is there a way to fix it? or should i file a bug? On Fri, Sep 11, 2009 at 12:32 AM, j alex strutstwou...@gmail.com wrote: hmm..i remember getting the warning even for doubles..as the error message says, OGNL fails when trying to set a String array (all request

Re: Warning message when setting BigDecimal to list of bean

2009-09-10 Thread Steven Yang
Sorry I forgot to mention I am using Struts 2.1.8 SNAP SHOT with XWork 2.1.6 samething happens with XWork 2.1.5 On Wed, Sep 9, 2009 at 2:03 PM, Steven Yang kenshin...@gmail.com wrote: Hi I have a bean like public class Account { private String type; private String name;

Re: Warning message when setting BigDecimal to list of bean

2009-09-10 Thread j alex
hmm..i remember getting the warning even for doubles..as the error message says, OGNL fails when trying to set a String array (all request parameters are Strings ) into the BigDecimal field since it cannot find an appropriate setter. In connection to this, can anyone let me know how to suppress

Warning message when setting BigDecimal to list of bean

2009-09-09 Thread Steven Yang
Hi I have a bean like public class Account { private String type; private String name; private BigDecimal value1; private BigDecimal value2; private BigDecimal value3; //getter, setters } in my action i have public class TestAction extends ActionSupport { private