Re: Removing vales from Request Object

2001-02-22 Thread Craig R. McClanahan
Shahed Ali wrote: Hi, Is there some way in which I can remove values in the request object before forwarding from my servlet to a jsp page ? Use request.removeAttribute(). Or if not, can I create a new blank request object and use it in the forward method call ? The servlet spec

Re: Removing vales from Request Object

2001-02-22 Thread Shahed Ali
See the removeAttribute method in the ServletRequest class. I mean removing request parameter values (posted form data) and not attributes set by the setAttribute() api calls. I looked at the *Facade*.java and RequestImpl.java code in the tomcat source, but it was quite confusing and got me