Re: Servlets, send redirect and request scope



Berlin Brown <berlin.brown@xxxxxxxxx> wrote:
/// Here ????????? build up the request object?
String key, value = session.getValue(arr);
request .setValue(key, value);

Check the API docs for javax.servlet.http.HttpServletRequestWrapper.
You'd build a subclass of that, and pass it to FilterChain.doFilter in
place of the original ServletRequest.

--
Chris Smith
.