RE: EL Mystery

2005-03-24 Thread kurt . e . williams
Paul, Thank you very much. That solved the problem. We moved to 2.4 and EL works the way I had hoped. We were referencing 2.2. Thanks, Kurt -- Kurt Williams [EMAIL PROTECTED] Kurt, JSP 2.0 containers have EL turned off implicitly if you are not using the Servlet 2.4 spec. Check the top

RE: EL Mystery

2005-03-23 Thread Benedict, Paul C
Kurt, JSP 2.0 containers have EL turned off implicitly if you are not using the Servlet 2.4 spec. Check the top of your web.xml file -- if you see it is referencing the 2.3 DTD, you need to change it the 2.4 schema. Thanks, Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: EL Mystery

2005-03-23 Thread Jeff Beal
On Wed, 23 Mar 2005 19:38:39 +, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can some one shed some light on this mystery? Also I have heard that using EL outside of tags can be a security problem and that it is better to use a c:out value=${EL}/ instead. The security part of this was

Re: EL Mystery

2005-03-23 Thread Leon Rosenberg
So, it's as much of security risk as bean:write? I mean you could turn the filter off and get the same effect? Leon Von: Jeff Beal [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 23. März 2005 21:56 An: Struts Users Mailing List Betreff: Re: EL Mystery On Wed, 23 Mar 2005 19:38:39 +

Re: EL Mystery

2005-03-23 Thread Leon Rosenberg
So, it's as much of security risk as bean:write? I mean you could turn the filter off and get the same effect? Leon Von: Jeff Beal [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 23. März 2005 21:56 An: Struts Users Mailing List Betreff: Re: EL Mystery On Wed, 23 Mar 2005 19:38:39 +

Re: EL Mystery

2005-03-23 Thread Jason Lea
Users Mailing List Betreff: Re: EL Mystery On Wed, 23 Mar 2005 19:38:39 +, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can some one shed some light on this mystery? Also I have heard that using EL outside of tags can be a security problem and that it is better

Re: EL Mystery

2005-03-23 Thread Folashade Adeyosoye
Or try escaping the c:out.. e.g c:out value=${login.name} escapeXml=true/ true of false depending hope that helps... On Wed, 23 Mar 2005 15:56:02 -0500, Jeff Beal [EMAIL PROTECTED] wrote: On Wed, 23 Mar 2005 19:38:39 +, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can some

Re: EL Mystery

2005-03-23 Thread Jason Lea
hmm, having said that, it might be weird if the default behaviour was to filter. eg comparing "${company.name} is cool" and c:set var="companyName""${company.name} is cool"/c:set ${companyName} would have the second one filtered twice. It might be possible to only filter when not inside