RE: Wrapping Requests and jsp:include

2004-04-07 Thread Mike Curwen
PROTECTED] Sent: Wednesday, April 07, 2004 12:10 AM To: Tomcat Users List Subject: Re: Wrapping Requests and jsp:include Hi, I think that's the correct behaviour for jsp:include action. The request is shared among all the included pages. If you are still in doubt, you can do a simple

RE: Wrapping Requests and jsp:include

2004-04-07 Thread Yansheng Lin
you are doing exactly -Yan -Original Message- From: Mike Curwen [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 8:19 AM To: 'Tomcat Users List' Subject: RE: Wrapping Requests and jsp:include I know that works. My main concern was does tomcat internally construct a new

RE: Wrapping Requests and jsp:include

2004-04-07 Thread Mike Curwen
- From: Yansheng Lin [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 10:39 AM To: 'Tomcat Users List' Subject: RE: Wrapping Requests and jsp:include Hey, you may want to try the question on the dev list. But IMHO if tomcat does not follow the spec, then it would be a bug

Wrapping Requests and jsp:include

2004-04-06 Thread Mike Curwen
Hello, I'm just wanting to check if something is consistent with Spec. I've tested code that performs the following, in tomcat 4.1.29, and it 'works as expected'. So I'm curious if this is a 'guaranteed' behaviour across all containers, or if this is one of those fuzzy areas, and it just happily

Re: Wrapping Requests and jsp:include

2004-04-06 Thread Yan Lin
Hi, I think that's the correct behaviour for jsp:include action. The request is shared among all the included pages. If you are still in doubt, you can do a simple test by setting a param in your request for you main jsp file, then try to retrieve it in your included jsp file. Hope this