Okay.... I just added this....
> <jsp-config> > <jsp-property-group> > <url-pattern>*.html</url-pattern> > <el-ignored>false</el-ignored> > </jsp-property-group> > </jsp-config> > And changed from a DOCTYPE to: > <web-app xmlns="http://java.sun.com/xml/ns/j2ee" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee > > http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" > version="2.4"> > This appears to have made the EL expressions evaluate... maskkkk wrote: > > I'm using 5.0.28, that should be a 2.4 complient container.... > > The funny thing is the tags work fine, but when I try to include a EL > expression it doesn't evaluate... > > Oh and I made an attempt at turning off sitemesh, would that cause any > problems? > > > Matt Raible-3 wrote: >> >> What do your EL expressions look like? If you're using ${foo}, you >> need to have Servlet 2.4 enabled in web.xml rather than Servlet 2.3 >> (the default). If you're using Servlet 2.3, you need to use <c:out >> value="${foo}"/>. >> >> To change to Servlet 2.4, set jsp.2 to "true" in properties.xml. You >> can also run "ant -f convert-to-jsp2.xml" to convert permanently (will >> not work on a 2.3 container). >> >> Matt >> >> On 12/8/06, maskkkk <[EMAIL PROTECTED]> wrote: >>> >>> I can't seem to get my EL expressions to evaluate...what could cause >>> this? >>> >>> >>> -- >>> View this message in context: >>> http://www.nabble.com/EL-Expressions-do-not-evaluate.-tf2782823s2369.html#a7764367 >>> Sent from the AppFuse - User mailing list archive at Nabble.com. >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>> For additional commands, e-mail: [EMAIL PROTECTED] >>> >>> >> >> >> -- >> http://raibledesigns.com >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> > > -- View this message in context: http://www.nabble.com/EL-Expressions-do-not-evaluate.-tf2782823s2369.html#a7764759 Sent from the AppFuse - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
