Our web service return JSON string with property name in uppercase.
In our Java (Android) client we use GSON to deserialize it and cast to a POJO class.
Sometime the deserialization fail because the name of a property from the WebService is USERNAME and on the client side the JAVA class have userName
Anyway to avoid this problem ?
Thanks in advance
Giuseppe