2009/11/1 Brian Wolf <brw...@gmail.com>:
>
> *description* *The server encountered an internal error () that prevented it
> from fulfilling this request.*
>
> *exception*
>
> org.apache.jasper.JasperException: /search.jsp(151,22) Attribute value
>  language + "/include/header.html" is quoted with " which must be
> escaped when used within the value
>...

Look at line 151 in your /search.jsp file and replace
<jsp:include page=”<%=language + "/include/header.html"%>" />
that you seem to have there with
<jsp:include page=”<%=language + \"/include/header.html\"%>" />

See "Quoting in attributes" in chapter JSP.1.6 Quoting and Escape Conventions
of the JSP specification.



Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to