Re: Embedding ${} syntax in jsp pages

2004-07-23 Thread Steve Cheng
Check your web.xml. It should looks like the followings web-app version=2.4 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 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd; steve - Original

Re: Embedding ${} syntax in jsp pages

2004-07-23 Thread Thilo Krawietz
Hi Ess, in order to enable interpretation JSP 2.0 EL expressions, you need to switch your webapp to JSP 2.0. This is done in web.xml by replacing the starting web-app tag by this syntax: web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;