RE: JSP thread safety

2002-08-28 Thread Kevin A. Smith
Not sure about the taglib class variables (but I'd really like the answer to that one also). With respect to JSP thread safety, my understanding was that any variables declared in the page were only in scope during the execution of the page, much like variables in method scope. If the pages

RE: JSP thread safety

2002-08-28 Thread James Higginbotham
of the generated method by the JSP compiler and thus they go on the stack for the thread, rather than the heap. James -Original Message- From: Kevin A. Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:54 PM To: Struts Users Mailing List Subject: RE: JSP thread safety

RE: JSP thread safety

2002-08-28 Thread Galbraith, Paul
reference is made? Paul -Original Message- From: James Higginbotham [mailto:[EMAIL PROTECTED]] Sent: August 28, 2002 2:03 PM To: Struts Users Mailing List Subject: RE: JSP thread safety Well, the JSP spec says it all - may want to take a look, or just write a JSP page and have

Re: JSP thread safety

2002-08-28 Thread Craig R. McClanahan
On Wed, 28 Aug 2002, Galbraith, Paul wrote: Date: Wed, 28 Aug 2002 13:34:07 -0400 From: Galbraith, Paul [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: JSP thread safety Can someone clear up basics of JSP thread safety for me? Same

RE: JSP thread safety

2002-08-28 Thread Craig R. McClanahan
On Wed, 28 Aug 2002, Kevin A. Smith wrote: Date: Wed, 28 Aug 2002 14:24:03 -0400 From: Kevin A. Smith [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: JSP thread safety It sounds like tag instances can