Hi All,
Now and then I'm seeing a question/issue raised against CXF similar to
this one:
POST
a=b&a=c
@Produces(MediaType.TEXT_PLAIN)
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
public String post(@Context HttpServletRequest request) {
String[] values = request.getParameterValues("a");
}
should the above code return a "b,c" array ? My answer is JAX-RS does
not require it. Can someone clarify please ?
Thanks, Sergey