google app engine - Why are my JSON property names being folded to lower case? -


i have cloud endpoint app, rest json looks this

{    "first_name": "robert" } 

and mapped jdo object, thus

private string first_name 

the problem have fails, gce code fails recognise first_name. looked @ api explorer, , generated endpoint expects first_name.

when create test client generate json first_name works fine.

sadly however, client generate json in production outside of control, can't change fact sending first_name in capitals.

any suggestions?


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -