I have this resource method
public Response resMethod(@DefaultValue("") @FormParam("memo") String memo,
@Context Thingy parties) {}
where Thingy is built from a custom Provider.
Ideally, I would like to have Jersey pluck out the "memo" form param, and
let the Thingy provider pluck out and process the remainder of the form
params.
What I found, however, is that no matter how many form parameters I post, as
long as there is one @FormParam in the method signature, Jersey leaves no
form params remaining for consumption by the Thingy provider (via the Thing
provider dipping into Form formParameters =
httpContext.getRequest().getFormParameters()).
Is this the behavior one would expect?
--
Mark