AW: Forwarding in servlets.

2002-10-07 Thread Ralph Einfeldt
You can use response.sendRedirect in servlets. But keep in mind that this is a complette different thing than dispatcher.forward(). redirect() forces the client to do a second request to the url. (You can see this in the browser as it will show a different URL). Forward() works internally, the

Re: AW: Forwarding in servlets.

2002-10-07 Thread Kwok Peng Tuck
Thanks, so the question now would be like this. With the dispatcher.forward() method, is it possible to POST data instead of tacking parameters at the end of test.jsp ? Ralph Einfeldt wrote: >You can use response.sendRedirect in servlets. > >But keep in mind that this is a complette different

AW: AW: Forwarding in servlets.

2002-10-07 Thread Ralph Einfeldt
Betreff: Re: AW: Forwarding in servlets. > > > Thanks, so the question now would be like this. > With the dispatcher.forward() method, is it possible to POST data > instead of tacking parameters at the end > of test.jsp ? > -- To unsubscribe, e-mail: <mailto:[EMAIL PROT

Re: AW: AW: Forwarding in servlets.

2002-10-07 Thread Kwok Peng Tuck
rameters >to the request. At this point this has nothing to do >with GET or POST. > > > >>-Ursprüngliche Nachricht- >>Von: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] >>Gesendet: Dienstag, 8. Oktober 2002 08:56 >>An: Tomcat Users List >>

AW: AW: AW: Forwarding in servlets.

2002-10-08 Thread Ralph Einfeldt
That's what the spec says. (It works for me in tc 4.0.3) > -Ursprüngliche Nachricht- > Von: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 8. Oktober 2002 09:13 > An: Tomcat Users List > Betreff: Re: AW: AW: Forwarding in servlets. &g

Re: AW: AW: AW: Forwarding in servlets.

2002-10-08 Thread Kwok Peng Tuck
Ok thanks. Ralph Einfeldt wrote: >That's what the spec says. > >(It works for me in tc 4.0.3) > > > >>-Ursprüngliche Nachricht- >>Von: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] >>Gesendet: Dienstag, 8. Oktober 2002 09:13 >>An: Tomcat

Re: AW: AW: AW: Forwarding in servlets.

2002-10-08 Thread sonam singh
t; > > >>-Ursprüngliche Nachricht- > >>Von: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] > >>Gesendet: Dienstag, 8. Oktober 2002 09:13 > >>An: Tomcat Users List > >>Betreff: Re: AW: AW: Forwarding in servlets. > >> > >>So I j