Re: Request dispatcher fails on encoded url when used in post (Bug?)

2003-08-27 Thread Bill Barker
See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22734. You can also search bugzilla, since this one has come up several times (this is just the latest incarnation :). "Neil Aggarwal" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello: > > I am getting a failure in my code w

RE: Request dispatcher fails on encoded url when used in post (Bug?)

2003-08-27 Thread Neil Aggarwal
] > Sent: Tuesday, August 26, 2003 8:12 PM > To: Tomcat Users List > Subject: RE: Request dispatcher fails on encoded url when > used in post (Bug?) > > > that is a funky url, it has a space in it, and the last "/" should be > encoded > > Filip > &g

RE: Request dispatcher fails on encoded url when used in post (Bug?)

2003-08-27 Thread Filip Hanik
that is a funky url, it has a space in it, and the last "/" should be encoded Filip > -Original Message- > From: Neil Aggarwal [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 26, 2003 5:45 PM > To: 'Tomcat-User' > Cc: Jeff Patterson > Subject: Request dispatcher fails on encoded url whe

RE: Request Dispatcher

2002-08-01 Thread Jacob Hookom
Science University of Wisconsin, Eau Claire -Original Message- From: Mike Jackson [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 5:08 PM To: Tomcat Users List Subject: RE: Request Dispatcher I don't think so, at least I've never been able to do it. What I've d

RE: Request Dispatcher

2002-08-01 Thread Mike Jackson
I don't think so, at least I've never been able to do it. What I've done is added attributes to the request (see the javadocs for details). Attributes only work with objects, but that's both an advantage and a disadvantage. --mikej -=- mike jackson [EMAIL PROTECTED] > -Original Message

RE: Request dispatcher

2002-05-16 Thread Dave Finch
IL PROTECTED] > -Original Message- > From: Dave Finch [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 16, 2002 4:02 PM > To: 'Tomcat Users List' > Subject: RE: Request dispatcher > > > I understand that. But I don't like the idea of sending the redi

RE: Request dispatcher

2002-05-16 Thread Mike Jackson
> -Original Message- > From: Dave Finch [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 16, 2002 4:02 PM > To: 'Tomcat Users List' > Subject: RE: Request dispatcher > > > I understand that. But I don't like the idea of sending the redirect > instruc

RE: Request dispatcher

2002-05-16 Thread Dave Finch
Jackson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 5:31 PM To: Tomcat Users List Subject: RE: Request dispatcher Request dispatchers aren't the same a redirects (what I think you're looking for). As I understand things a request dispatcher is done on the server, ie t

RE: Request dispatcher

2002-05-16 Thread Mike Jackson
Request dispatchers aren't the same a redirects (what I think you're looking for). As I understand things a request dispatcher is done on the server, ie the page accessed accesses another page and the page you access still looks like the one you originally hit. A redirect will send them to anoth

RE: Request Dispatcher

2001-11-14 Thread Rajah Kalipatnapu
thats exactly correct, and if do not want to use forward, may be u can use a conditional statement -Original Message- From: Tom Drake [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 10:32 AM To: Tomcat Users List Subject: Re: Request Dispatcher JSP provides an easier way

Re: Request Dispatcher

2001-11-14 Thread Tom Drake
JSP provides an easier way to do what you are attempting. However, the 'hot' include mechanism, is very much like a function call. the output from the included jsp/servlet simply appears in the middle of your output stream. It does not replace the entire page. If you need a completely different r