• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

EL related query

 
Ranch Hand
Posts: 129
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

I am testing this sample jsp for EL and below is the first line in the jsp.

<%@ page IsELIgnored="false" %>

web.xml:
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>false</el-ignored>
<scripting-invalid>false</scripting-invalid>
<is-xml>false</is-xml>
</jsp-property-group>
</jsp-config>

I have added below jars into my WEB-INF/lib

jstl.jar
standard.jar
jsp-api.jar
jsp.jar

When I run the jsp , I get below error message:

Parsing of JSP File '/jsp/IsELIgnored.jsp' failed:
--------------------------------------------------------------------------------
/jsp/IsELIgnored.jsp(1): unrecognized JSP directive: 'IsELIgnored'='false'
probably occurred due to an error in /jsp/IsELIgnored.jsp line 1:
<%@ page IsELIgnored="false" %>

I am using weblogic 8.1 and Eclipse 3.1.Can anybody please help me in resolving this ?

Thanks,
Amol
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey man,

try this:

isELIgnored instead of IsELIgnored.

Cheers,
Kinow
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please do not duplicate threads. I have removed the other one.
 
Amol Fuke
Ranch Hand
Posts: 129
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Bruno ,
I tried this but it does not work.It seems the problem with my hstl jar version.Trying different combinations.

Sorry Christophe , I got the exception first time so submitted again.But eventually it got submitted twice.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic