RE: JSP include issue when pre-compiling using Ant/Tomcat

2007-01-26 Thread Martin Lambert
on't compile 3) The documentation is straightforward - look for *.jsp and compile it. If a page is not meant to be compiled - then don't give it the jsp suffix. When writing in C, people don't compile *.h - they compile *.c. People don't write headers with file extensions of .

RE: JSP include issue when pre-compiling using Ant/Tomcat

2007-01-25 Thread Martin Lambert
all it directly potentially bypassing validations or other logic. -Tim Martin Lambert wrote: > Hi, > > I'm having problems doing JSP pre-compilation using Tomcat's JSP > pre-compilation libraries and Ant. The problem is demonstrated by the > following: >

JSP include issue when pre-compiling using Ant/Tomcat

2007-01-25 Thread Martin Lambert
Hi, I'm having problems doing JSP pre-compilation using Tomcat's JSP pre-compilation libraries and Ant. The problem is demonstrated by the following: test.jsp: <% String myVar = "Hello"; %> <%@ include file="test2.jsp" %> Some more text test2.jsp Goodbye <%= myVar + "World" %> Testing bu