Hi I have a jar rs method as below
@GET
@Path("/versioning/{subjectid}")
@Produces("application/json")
where subjectid is the path param
When i invoke the service using the below request
/V6.0/xyz/versioning/001033918IN73804CáritaSTG
It gets changed to this automatically by apache CXF
/V6.0/xyz/versioning/001033918IN73804C%C3%A1ritaSTG
I assume CXF is by default encoding the path param
However i get the below error
2016-02-22 16:29:49,177 WARNING
[org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor] (http-127.0.0.1-8092-1) No root resource matching request path
Is there any way to resolve this?