Roberto Marra wrote:

In my web.xml I don't declare to use the servlet spec 2.4 schema

David Smith ha scritto:

Did you declare your web.xml to use the servlet spec 2.4 schema? AFAIK, that's required to make EL expressions work.

--David


Try replacing the top of your web.xml with this and restarting the app:

<?xml version="1.0" encoding="UTF-8"?>
<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";>

--David

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to