2012/3/11 Ole Ersoy <ole.er...@gmail.com>:
>> So, is it rendering it as text or is it throwing an exception?
>
>
> Just rendering as text.
>
>
>>
>> What is your jsp-config in web.xml?
>
>
> <!DOCTYPE web-app PUBLIC
>  "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
>  "http://java.sun.com/dtd/web-app_2_3.dtd"; >

The above declaration means that the app adheres to Servlet Spec 2.3,
which means means it is JSP 1.2.

That version of JSP specification does not support Expression
Language, like the one that you are trying to use.


You should change your web.xml to use later version of specification.
You may look at the top of conf/web.xml file for an example.

> <web-app>
>  <display-name>Archetype Created Web Application</display-name>
> </web-app>
>

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

Reply via email to