Sergey,

I think I get this, but I wanted to check.

Does the following expect a post, with a param named 'params', and
parse the results as json into a map for me?

@Path("/whatever")
@POST
@Consumes("application/json")
@Produces("application/json")
public Response whatever(@FormParam(value="params") Map<String,
String> keysAndValues)
{
....
}

--benson

Reply via email to