ffang commented on code in PR #1633: URL: https://github.com/apache/cxf/pull/1633#discussion_r1452785762
########## rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/filters/OAuthRequestFilter.java: ########## @@ -202,7 +202,7 @@ protected boolean checkRequestURI(HttpServletRequest request, List<String> uris, if (uris.isEmpty()) { return true; } - String servletPath = request.getPathInfo(); + String servletPath = request.getServletPath() + request.getPathInfo(); Review Comment: a Null checker added to address this -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cxf.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org