From: "Will Stranathan" <[EMAIL PROTECTED]> > Well, I understand the way HTTP is working there, it just SEEMS to be > that having the additional method (setBar(int, String)) confused > BeanUtils or something - because removing those methods (making no > other changes) cleared the problem up.
Your original code violated the JavaBeans specification-- you're only allowed one pair of get/set methods, and the types have to match. (Boolean properties have slightly different rules.) Any additional methods will, as you found out, confuse the introspection process. -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]