Re: Tomcat 4.0 Beta3 and Request Attributes Error - why me ?

2001-05-17 Thread Anthony Tagunov
Hello Ana, Wednesday, May 02, 2001, 8:23:09 PM, you wrote: A Hi, Hello! A We think we have discovered an error. That's nice! But why are you mailing me? I'm not a tomcat developer! :-) Best regards, Anthonymailto:[EMAIL PROTECTED]

RE: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Charles Chen
RequestDispatcher.forward() returns immediately BUT the JSP page has not been processed yet! The JSP page will only be processed after the servlet finishes the work, i.e., your doGet or doPost returns. Therefore, there is no way to access attributes in the JSP page inside the calling servlet.

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Craig R. McClanahan
On Wed, 2 May 2001, Ana wrote: Hi, We think we have discovered an error. We call the include method of the RequestDispatcher from a servlet. Then, we call the setAttribute method of the request object of the included JSP. If we call the getAttribute method of the request object in

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Remy Maucherat
On Wed, 2 May 2001, Ana wrote: Hi, We think we have discovered an error. We call the include method of the RequestDispatcher from a servlet. Then, we call the setAttribute method of the request object of the included JSP. If we call the getAttribute method of the request object in

Re: Tomcat 4.0 Beta3 and Request Attributes Error

2001-05-02 Thread Craig R. McClanahan
On Wed, 2 May 2001, Remy Maucherat wrote: On Wed, 2 May 2001, Ana wrote: Hi, We think we have discovered an error. We call the include method of the RequestDispatcher from a servlet. Then, we call the setAttribute method of the request object of the included JSP. If we call