I have a JSP file, create.jsp, which receives a POST request from an Ext grid containing a data parameter. Firebug displays a POST like this:
{"data":{"a":"","b":"","c":""}}
When I try to retrieve the data from the request object in create.jsp using this method,
request.getParameter("data");
it returns null. In fact the request object contains no parameters or attributes.
I've tested create.jsp with a POST that contains xaction:read and then the request.getParameter("xaction") returns "read", as expected.