I'm using 2.1-incubator-SNAPSHOT from this repository
http://people.apache.org/repo/m2-snapshot-repository
I saw in the jira issues that @QueryParam hasn't been implemented yet.
I have a service with optional parameters and the parameters might keep
growing so I wanted to keep the URL query based.
Is there any way to get query parameters currently?
Also, the IP Address of the person calling the service?
The following gives me all null parameters.
public SeamSponsorship nextSeamSponsorship(@HttpContext
UriInfo info, @QueryParam("seamId")
String seamId, @QueryParam("clientIPAddress")
String clientIPAddress, @QueryParam("domain")
String domain)
Thanks