I have some html forms which have select inputs that can have multiple values selected. When I post them to my Restlet service I only the currently selected value. I know that if this were a plain servlet I could use request.getParameterValues(... to get to the array of selected values, but I can't seem to find the equivalent in Restlet. From what I can tell the service maps the request to a JsonRepresentation but I don't see an equivalent method for accessing the parameter values.
Does anyone know a way to do this with Restlet2.x?