Hi Walther, be sure your web.xml is set to the following:
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd" version="2.4"> It has to be version 2.4 of Servlet Specification to enable EL in your jsp's. It does not work with older versions! Hope this helps, Peter -----Ursprüngliche Nachricht----- Von: Walther Hautermann [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 26. Juli 2005 10:37 An: [email protected] Betreff: tomcat 5.5.9, JSP, EL evaluation Hi, My jsp page contains a <c:out value="${users}"/>. The result is ${users}. I had a look in the generated .java and it seems the ${users} is not evaluated : _jspx_th_c_out_0.setValue(new String("${users}")); Is there something to configure with tomcat 5.5.9 to enable the evaluation of the EL ? Thanks for your help. Walther --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
