Re: Indirect jsp:include does not seem to work

2005-04-01 Thread Ian F. Darwin
Now I understand: you want real life to work like the comic book! :-) :-) (Don't take that personally, it's April 1 today after all). - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Indirect jsp:include does not seem to work

2005-04-01 Thread Michael J.
> A syntax reference is not the same as a specification. Specifications > are (supposedly) more rigorous and > more precise in their specification of required behaviour. Tomcat is the > reference implementation > for the Servlet and JSP specifications. It might be helpful if > everybody who is int

Re: Indirect jsp:include does not seem to work

2005-04-01 Thread Ian F. Darwin
Michael J. wrote: Here is what I found at: http://java.sun.com/products/jsp/syntax/1.2/syntaxref1214.html#8828 [snip] So, what I am doing is perfectly legitimate... A syntax reference is not the same as a specification. Specifications are (supposedly) more rigorous and more precise in their spe

Re: Indirect jsp:include does not seem to work

2005-04-01 Thread Bill Barker
t; <[EMAIL PROTECTED]> To: "Tomcat Developers List" Sent: Friday, April 01, 2005 10:51 AM Subject: Re: Indirect jsp:include does not seem to work > Here is what I found at: > http://java.sun.com/products/jsp/syntax/1.2/syntaxref1214.html#8828 > > "The element allows

Re: Indirect jsp:include does not seem to work

2005-04-01 Thread Michael J.
Here is what I found at: http://java.sun.com/products/jsp/syntax/1.2/syntaxref1214.html#8828 "The element allows you to include either a static or dynamic resource in a JSP page. The results of including static and dynamic resources are quite different. If the resource is static, its content is i

Re: Indirect jsp:include does not seem to work

2005-04-01 Thread Tim Funk
You cannot perform a forward inside an include. [Just like you can't set any headers, including cookies, in an include or a host of other things while in an include.] -Tim Michael J. wrote: Hello all, I have master jsp page, and I try to jsp:include page="/strutsAction.do", which forwards to de

Indirect jsp:include does not seem to work

2005-04-01 Thread Michael J.
Hello all, I have master jsp page, and I try to jsp:include page="/strutsAction.do", which forwards to detail jsp page, but this does not work. On Tomcat 4.x and 5.x the detail page content is included, but further content from the master page is stripped out. According to jsp specs, if I include