i am using jakarta-tomcat-5.0.16 and j2sdk1.4.2_04.expression language was working properly.without any reason expression language is not running.what could be wrong?
Colin Fletcher
Ranch Hand
Joined: Sep 10, 2004
Posts: 200
posted
0
I would suggest asking the question in the Tomcat forum....
SCJP 1.4 SCWCD 1.4
muthulingam Jayakanthan
Ranch Hand
Joined: Feb 27, 2005
Posts: 43
posted
0
I think u have to install jdk1.5 to work
Prasanna Maiya
Greenhorn
Joined: Mar 09, 2005
Posts: 3
posted
0
If it was working fine earlier and suddenly stopped working, something must have changed in between.
May be your web.xml instructs the container to ignore EL. (See under <jsp-config><jsp-property-group> element. <el-ignored>true</el-ignored> .
Make sure your new file is part of the same web-application the old one was part of.
SCJP1.4,SCWCD1.4, SCBCD1.4(In Progress)
pree sree
Ranch Hand
Joined: Jul 27, 2002
Posts: 34
posted
0
i have not changed anything.there is no <jsp-config> tag in my web.xml.Since this is part of my exam prep the web-app issue is not there.
[ March 09, 2005: Message edited by: pree sree ] [ March 09, 2005: Message edited by: pree sree ]
Ramnathan Ravindran
Ranch Hand
Joined: May 12, 2004
Posts: 43
posted
0
I too had the same problem while learning Expression Language. EL is enabled by default. This is what I learned. At first, when learning I did not have any <el-ignored> entry in the web.xml. I was surprised to find that el was not evaluated. Then I put in an entry to eveluate EL in the DD. Even after that the EL was not evaluated. Then the last thing I added an entry to evaluate EL in the jsp page. Huh! It worked. The EL in the page was getting eveluated. I really dont understand why the EL was not evaluated when there was an entry in the DD.
Regards<br />- Ramnathan<br />SCJP 1.4, SCBCD 1.3, OCA
RajaVenkatRamReddy Garlapati
Greenhorn
Joined: Mar 09, 2005
Posts: 1
posted
0
Check whether jstl.jar and standard.jar are present in your web application's web-inf/lib directory.