It is almost like you wrote except that we only get the param value. 

Example:
@Path("/foo")
class Foo {
  @GET
  @Path("/bar={bar}")
  someMethod(@PathParam("bar") String bar) { ... }
}

I will run my code with 2.2-SNAPSHOT and check if we have this problem with
it.


Sergey Beryozkin-3 wrote:
> 
> Just wouild like to clarify that this is a sample request URI :
> 
> /foo/bar=A%2BB
> 
> can you please tell me how are you retrieving the bar value ?
> is it like this :
> 
> @Path("/foo/{barPair}")
> someMethod(@PathParam("barPair") String bar)
> 
-- 
View this message in context: 
http://www.nabble.com/URL-escaping-%2B-tp20090011p20104827.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to