Re: common JSTL tagging pattern is a problem for Tomcat

2007-03-20 Thread Rashmi Rubdi
It appears that the JSP file is written with JSP XML syntax. < and > are reserved characters in XML , if you must use them then you would use < and > But there is no need to use either of the less than, greater than characters since you can simply write c:out as ${someVariable} , instead of

Re: common JSTL tagging pattern is a problem for Tomcat

2007-03-20 Thread Hassan Schroeder
On 3/20/07, Pat Willard <[EMAIL PROTECTED]> wrote: My JSP begins as follows: All attempts using a typical JSTL tagging sounded by Uh, that's the way XML works -- you can't nest tags like that. But First Name:

common JSTL tagging pattern is a problem for Tomcat

2007-03-20 Thread Pat Willard
I am using Tomcat 5.5.2 My JSP begins as follows: http://java.sun.com/JSP/Page"; xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"; xmlns:c="http://java.sun.com/jsp/jstl/core"; xmlns:spring="http://www.springframework.org/tags";> The body is as follows: Student Registration First Nam