I noticed that if I have an include directive
within another include directive,
in Tomcat 3.1, the 2nd include has a path
relative to the jsp doument.
But in 3.2 its relative to the 1st include
document.
i.e
A.jsp ---> includes 1.inc
---------> includes 2.inc
Both 1.inc and 2.inc are under the ./include
directory
In 3.1
A.jsp would have <@ include file =
"include/1.inc"
and 1.inc would have <@ include file =
"include/2.inc">
In 3.2
A.jsp would have <@ include file =
"include/1.inc"
and 1.inc would have <@ include file =
"2.inc">
Is this a change in the jsp spec or something
specfic to tomcat ?
Thanks
Shahed |
- Re: Include Directive 3.1 Vs 3.2 Shahed Ali
- Re: Include Directive 3.1 Vs 3.2 Craig R. McClanahan