On Aug 21, 2009, at 6:00 PM, dloy wrote:
> Is there a preferred way in Jersey to get the POST data (not as
> query value)? I know you can use @Context HttpServletRequest request
> - but I wasn't sure how that interacts with other Jersey annotation?
>
The easiest way is to have a method parameter of type
MultivaluedMap<String,String> with no annotations, that will get the
values from the posted form data.
Marc.