Hi all.

I tried to work with XML JSPs (i.e. JSP in XML form) but I am not able to
use request time attriubtes. For example the former JSP code

<table width="<%= MyConstants.TABLE_WIDTH %>">
</table>

should translate into:

<table width="%= MyConstants.TABLE_WIDTH %">
</table>

Tomcat 4.1.12 does not recognize this request-time attribute expression and
outputs it literally, i.e. the generated servlet contains the code:

out.write("<table width=\"%= MyConstants.TABLE_WIDTH %\">");

Can anyone help me with this problem?

Thanks,
--Stefan


--
To unsubscribe, e-mail:   <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>

Reply via email to