Hi, I'm attempting to update to 2.0.8, and I've run into a strange issue. In our custom interceptors, we attempt to get the HttpServletRequest like so:
HttpServletRequest request = ServletActionContext.getRequest(); This is returning null in 2.0.8 (although it works fine 2.0.7. When we change it to the following, it works: ActionContext ac = actionInvocation.getInvocationContext(); HttpServletRequest req = (HttpServletRequest)ac .get(ServletActionContext.HTTP_REQUEST); Anyone else seen this? After getting our interceptors working, we then get this same problem in ServletDisplatcherResult on line 123. Not sure if I missed something when upgrading to 2.0.8 or what. Thanks, Nate --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]