Hi Sergey,
> @Path({filter:.*})
> public Response search(@PathParam("") SearchFilter bean) {
Thanks for pointing me in the right direction. I had changed it as follows:
@GET
@Path("/search.*")
public Accounts getList(
@Context
UriInfo uriinfo
) {
From here I'll just parse the path_info.
Again my thanks.
Gabo
