Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Marco Mistroni
Hello all, I have an app which is using struts 1.3.. I wanted to 'replace' existing struts tag with struts-el tag. So I downloaded struts-el-1.3.0-dev and put it into my jar, (along with struts-taglib-1.3.0-dev) I have declared taglibs in web.xml, and I wrote a simple page which uses

Re: Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Joe Germuska
At 11:08 AM +0100 7/28/05, Marco Mistroni wrote: anyone could give me some hints on what's wrong? Do you think the fact that I have both struts-taglib and struts-el in my Lib directory could cause problems? No, because el actually depends on taglib -- you have to have taglib to use el. If

RE: Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Marco Mistroni
July 2005 12:15 To: Marco Mistroni; 'Struts Users Mailing List' Subject: Re: Struts-EL problem with struts-el-1.3.0-dev At 11:08 AM +0100 7/28/05, Marco Mistroni wrote: anyone could give me some hints on what's wrong? Do you think the fact that I have both struts-taglib and struts-el in my Lib

Re: Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Wendy Smoak
From: Marco Mistroni [EMAIL PROTECTED] Yes I actually reverted to using c:if, and it worked Just fine I wanted just to report the situation to see if I was Using the taglib incorrectly... logic:present name=${sessionScope.results} Even if you're going to use an expression, the 'name'

RE: Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Marco Mistroni
Hello Wendy, I missed one point of your statement.. logic:present name=${sessionScope.results} Even if you're going to use an expression, the 'name' attribute should still evaluate to the _name_ of the bean, not the bean itself.

Re: Struts-EL problem with struts-el-1.3.0-dev

2005-07-28 Thread Jeff Beal
On 7/28/05, Marco Mistroni [EMAIL PROTECTED] wrote: Hello Wendy, I missed one point of your statement.. logic:present name=${sessionScope.results} Even if you're going to use an expression, the 'name' attribute should still evaluate to the _name_ of the bean, not the bean