In JAX-RS, the following is valid:
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/test")
public Response getTest(@QueryParam("ids") List<String> ids)
To call this, you could use /test?ids=1&ids=2&ids=3
This works correctly on the AppEngine dev server (jetty), but when deployed
to AppEngine itself, the query fails when specifying the same parameter
(ids) more than once.
I'm assuming this is a bug on the AppEngine server, as this JAX-RS / Jersey
service works fine on all other servers I have tested it with.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/qPXTMiICSwMJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.