I have a CXF JAX-RS app running within a larger EAR serving normal web pages,
running in WebLogic.
We're seeing occurrences of the following exception:
Caused by: java.lang.NullPointerException
at
weblogic.servlet.internal.ServletRequestImpl$SessionHelper.initSessionInfo(ServletRequestImpl.java:2611)
>From the google results for this, it appears that WebLogic is caching a
>request object that should not be cached (or something like that). The
>recommended solution is to "disable keepalive". Is this something I can do in
>the CXF controller, or perhaps in an outbound interceptor?