I am new to JAX-RS and I am trying to use Jersey to build a simple RESTful Webservice.
I have 2 questions. Please clarify these:
I am trying to have
This is how you enable slashes in path params:
@Path("{inchiname : .+}") public String get3DCoordinates(@PathParam("inchiname")String inchiName)