Hello guys,
I would like to understand if this is not a bug. Then if not could you be
nice and point out a better way of doing it?
Problem is simple. The below fragment when deserialized from
org.apache.axis2.databinding.utils.BeanUtil#deserialize() results in
Data#getCity() === null
<a:Data>
<a:City>Miami</a:City>
Of course the below can be deserialized and results correctly in
Data#getCity === "Miami"
<a:Data>
<a:city>Miami</a:city>
The closest complain I could find was
https://issues.apache.org/jira/browse/AXIS2-3752, not sure if related
though.
Thanks!
-Nestor