I have an APP that sends a JSON to a P/-SQL server. It works until my JSON gets bigger than 32kb, after that the server just gives to my APP:
HTTP 400 Value param too long. Length is 36141. Upper limit is 32512
My question, it is possible to change this 32kb limit in PL/SQL server or do I have to change my app (which would be a lot of work, more than week)?
Brainstorm, please.
More info about it:
Android APP that makes a HTTP REQUEST to a PLSQL SERVER.
Sends a JSON string with lots of parameters. JSON EX:
{"key":"b4r5t*a7g954g+5d.f0t","id_usuario":1,"clientes":[{"id_cliente":"1","data_sinc":"2015-10-06 10:33:01"},{"id_cliente":"3","data_sinc":"2015-10-06 10:33:01"},{"id_cliente":"2","data_sinc":"2015-10-06 10:33:01"},{"id_cliente":"29","data_sinc":"2015:10:06 10:33:00"}]}
It`s not a duplicated from Store big JSON files into Oracle DB, I wish it was. My problem is that the server (which is from a client, and I don't really know how it works) is refusing my HTTP access, so it can not concatenate the result, it has any to concatenate.