Originally posted by Kim Kantola:
when I debug, the value is not in the HttpServletRequest.
I seriously doubt that this is the case. The value is in the HttpServletRequest in the form of a parameter, not an attribute.
All you have to do get the value is this:
Whether you retrieve this value in your RequestProcessor or in an Action class, the value should be available.
Regarding Chris' suggestion to use a DispatchAction, that sounds like overkill to me. Just get the value as I have shown above and use it however you need to.