Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleDisable Services Listing
<servlet>
    ....
    <init-param>
        <param-name>hide-service-list-page</param-name>
        <param-value>true</param-value>
    </init-param> 
</servlet>

 


Support for Asynchronous Requests

...

Starting from CXF 2.2.5 it is possible to configure CXFServlet to redirect current requests to other servlets or serve the static resources.

init-param namedescription

...

redirects-list

...

space separated list of URI patterns; if a given request URI matches one of the patterns then CXFServlet will try to find a RequestDispatcher using the pathInfo of the current HTTP request and will redirect the request to it

...

...

redirect-servlet-path

...

can be used to affect a RequestDispatcher lookup, if specified then it will concatenated with the pathInfo of the current request

...

...

redirect-servlet-name

...

enable a named RequestDispatcher look-up, after one of the URI patterns in the "redirects-list" has matched the current request URI

...

...

static-resources-list

...

space separated list of static resource such as html, css, or pdf files which CXFServlet will serve directly

...

static-cache-controlset parameter value to HTTP response Cache-Control header

One can have requests redirected to other servlets or JSP pages.

...