Hi, I've found a small bug in amq. The org.apache.activemq.util.IntrospectionSupport.findSetterMethod uses name.substring(0, 1).toUpperCase(). What is local dependent. For example in turkish locale we won't get setter for 'initialReconnectDelay', because the uppercase of 'i' is not 'I'.
I would suggest using Character.toUpperCase(name.charAt(0)) what is local independent. Thanks, akos -- View this message in context: http://old.nabble.com/Locale-dependent-reflection-methods.-tp27593878p27593878.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.
