Re: EL expressions not being evaluated..

2006-09-12 Thread Andrés Florit
Expression Language (EL) is part of the JSP 2.0 specification. If I'm not wrong it has anything to do with servlets. If you use JSP 1.2 you have to import the JSTL libraries. I think that Tomcat 5 implemnts JSP 2.0. Sorry my english. Andrés On 9/12/06, Rahul Akolkar [EMAIL PROTECTED] wrote:

Re: EL expressions not being evaluated..

2006-09-12 Thread Rashmi Rubdi
Behind the scenes JSPs are Servlets . I had the same problem as maya is facing and after following the instructions here: http://wiki.apache.org/jakarta-taglibs/FrequentlyAskedQuestions , and making sure that there was no version mismatch between the .tld files and the URIs and getting

Re: huge memory amount bound by sleeping standard tags

2006-09-12 Thread thomas rimmele-nguyen
Thank you for the hint, it worked quite well. Thomas Kris Schneider schrieb: thomas rimmele-nguyen wrote: Tomcat 5.0.27 Look in $CATALINA_HOME/conf/web.xml for the jsp servlet (org.apache.jasper.servlet.JspServlet) and set its enablePooling init-param to false. Does it have a big

Re: EL expressions not being evaluated..

2006-09-12 Thread maya
thank you all very much for your responses.. will have to check everything you guys say tonight at home (off the top of my head, I know I have Tomcat 5.0.27 and, as far as I know, JSP 2.0; Servlet 2.4 specif (this I know for sure, I looked it up when downloaded JSTL..) one of the respondents

Re: EL expressions not being evaluated..

2006-09-12 Thread Andrés Florit
With JSP 2.0 you can use EL in all the page because it is part of the specification. Whit JSP 1.2 you can only use it with JSTL tags and customs tags (this last one I'm not very sure). EL is evaluated before the JSP is converted to a servlet, so I don't think you can use it in a servlet. Here's a

Re: EL expressions not being evaluated..

2006-09-12 Thread maya
again, thank you all very much.. as mentioned, I have Tomcat 5.0.27, which comes with the following (as specified in release-notes.txt that comes with it): * commons-collections*.jar (Commons Collections 2.1 or later) * commons-dbcp.jar (Commons DBCP 1.1 or later) * commons-el.jar (Commons

Re: EL expressions not being evaluated..

2006-09-12 Thread Kris Schneider
maya wrote: again, thank you all very much.. as mentioned, I have Tomcat 5.0.27, which comes with the following (as specified in release-notes.txt that comes with it): * commons-collections*.jar (Commons Collections 2.1 or later) * commons-dbcp.jar (Commons DBCP 1.1 or later) * commons-el.jar

Re: EL expressions not being evaluated..

2006-09-12 Thread maya
Kris Schneider wrote: maya wrote: again, thank you all very much.. as mentioned, I have Tomcat 5.0.27, which comes with the following (as specified in release-notes.txt that comes with it): * commons-collections*.jar (Commons Collections 2.1 or later) * commons-dbcp.jar (Commons DBCP 1.1 or

Re: EL expressions not being evaluated..

2006-09-12 Thread Rashmi Rubdi
Set up a fresh install of the latest Tomcat on the side with the correct web.xml entry, and put a test jsp page in it with a simple EL expression and see if it evaluates. I have apache-tomcat-5.5.12 and a different set of jar files under apache-tomcat-5.5.12\common\lib :