Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

expression language

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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?
 
Ranch Hand
Posts: 200
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would suggest asking the question in the Tomcat forum....
 
Ranch Hand
Posts: 43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think u have to install jdk1.5 to work
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
pree sree
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ]
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Check whether jstl.jar and standard.jar are present in your web application's web-inf/lib directory.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic