Uploaded image for project: 'CXF'
  1. CXF
  2. CXF-5592

HttpServletRequestFilter in RequestDispatcherProvider do not returns correct RequestURI path

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 2.7.8
    • 2.7.11, 3.0
    • JAX-RS
    • None
    • Unknown

    Description

      I have set up RequestDispatcherProvider to redirect from OAuth 2.0 authorization service (implemented by AuthorizationCodeGrantService) to different JAX-RS service, both served by the same CXFServlet.
      The problem is HttpServletRequestFilter in RequestDispatcherProvider do not returns correct RequestURI path - the context root path of the web application is missing.

      RequestURI is used then by HttpUtils to built JAX-RS service matching path and since the request URI is not correct, the service is not found.

      Configuration of request dispatcher is the following:

      <bean id="dispatchProvider" class="org.apache.cxf.jaxrs.provider.RequestDispatcherProvider">
              <property name="classResources">
                  <map>
                      <entry key="org.apache.cxf.rs.security.oauth2.common.OAuthAuthorizationData" value="/oauth2/implicitauthorize"/>
                  </map>
              </property>
              <property name="beanNames">
                  <map>
                      <entry key="org.apache.cxf.rs.security.oauth2.common.OAuthAuthorizationData" value="data"/>
                  </map>
              </property>
              <property name="logRedirects" value="true"/>
          </bean>
      

      Comments:
      "rest" is the name of the application (context root where the application is deployed)
      "/*" is CXFServlet's URL pattern
      "/oauth2" is the jaxrs:server address
      "/implicitauthorize" is the path of the mentioned JAX-RS service where the redirect should go

      Attachments

        Activity

          People

            sergey_beryozkin Sergey Beryozkin
            michal.sabo Michal Sabo
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: