Hi, I might have a problem with URL escaping +.
Assuming I want to call a JAX-RS service foo with parameter bar and the value "A+B". A + in a URL is a space so we need to escape it with %2B. If I have the URL /foo/bar=A%2BB then the service method should get the String "A+B". It however will get the string "A B". If escape %2B again and use the URL /foo/bar=A%252BB then the method will receive the String "A+B". Is this is a feature or is there some defect that causes this? Regards, Lasse
