I have a web application that interacts with a DB via a Java Servlet using HTTP-Post requests (initially used GET but the length of the requests forced me to switch to the POST method).
I'm getting a 400 status and can't find the reason:
I'm issuing several different requests to the DB, all work fine till I reached a large one (12K JSON string) which is preventing me from proceeding,
I checked the structure of the JSON and it looks OK (I'm using this great site).
The DB properly handles the received JSON when invoked within the DB.
Logs files (TOMCAT) do not show anything specific.
How can I find what the problem could be? Right now I don't even know what to ask.