Hi, I use ResponseBuilder to set location header. The location is started with "/" but it will changed by cxf jaxrs to be relative to the base uri. Is not a path starting with '/' absolute? My code is like below:
return Response
.ok()
.header("Location", kontinue)
.build();
Rice
