dynabean and jstl

2004-11-26 Thread Mario Neè
Hello, can i use dynabean inside a jsp using jstl ? i'm using struts 1.2.4 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: dynabean and jstl

2004-11-23 Thread Mario Neè
If i want to use standart tag in jsp what i have to do ? On Tuesday 23 November 2004 17:14, Duncan Mills wrote: > It works with org.apache.struts.action.DynaActionForm which exposes a > getMap() method > > Regards > > > Duncan Mills > http://www.goundside.com/blog > > Mario Neè wrote: > >this is

Re: dynabean and jstl

2004-11-23 Thread Mario Neè
ok. thanx. On Tuesday 23 November 2004 17:19, Mario Neè wrote: > javax.servlet.ServletException: An error occurred while evaluating custom > action attribute "value" with value "${cart.map['id']}": Unable to find a > value for "map" in object of class > "org.apache.commons.beanutils.BasicDynaBean"

Re: dynabean and jstl

2004-11-23 Thread Mario Neè
javax.servlet.ServletException: An error occurred while evaluating custom action attribute "value" with value "${cart.map['id']}": Unable to find a value for "map" in object of class "org.apache.commons.beanutils.BasicDynaBean" using operator "." (null) at org.apache.jasper.runtime.PageContext

Re: dynabean and jstl

2004-11-23 Thread Duncan Mills
It works with org.apache.struts.action.DynaActionForm which exposes a getMap() method Regards Duncan Mills http://www.goundside.com/blog Mario Neè wrote: this is the error Unable to find a value for "map" in object of class "org.apache.commons.beanutils.BasicDynaBean" using operator "." (null)

Re: dynabean and jstl

2004-11-23 Thread Bill Siggelkow
DynaActionForm, which implements DynaBean, contains a getMap() method; however, DynaBean does not expose the backing Map in a public property. To use a DynaBean with JSTL, you could create your own extension that exposed the protected 'values' HashMap using a public getter method. -Bill Siggelk

Re: dynabean and jstl

2004-11-23 Thread Matt Bathje
Mario Neè wrote: this is the error Unable to find a value for "map" in object of class "org.apache.commons.beanutils.BasicDynaBean" using operator "." (null) Mario - we would need to see your (relevant) code in order to help with this. Also, a copy of the stack trace for the error never hurts.

RE: dynabean and jstl

2004-11-23 Thread Robert Taylor
er 23, 2004 9:20 AM > To: [EMAIL PROTECTED] > Subject: dynabean and jstl > > > Hello, > > can i use dynabean inside a jsp using jstl ? > i'm using struts 1.2.4 > > - > To unsubscribe, e-mail: [E

Re: dynabean and jstl

2004-11-23 Thread Mario Neè
this is the error Unable to find a value for "map" in object of class "org.apache.commons.beanutils.BasicDynaBean" using operator "." (null) On Tuesday 23 November 2004 15:36, Duncan Mills wrote: > Sure, with a Dynaform called dynaLogonForm and a of > "email" you would use somethng like: > >

Re: dynabean and jstl

2004-11-23 Thread Duncan Mills
Sure, with a Dynaform called dynaLogonForm and a of "email" you would use somethng like: Duncan Regards Duncan Mills http://www.goundside.com/blog Mario Neè wrote: Hello, can i use dynabean inside a jsp using jstl ? i'm using struts 1.2.4 ---

dynabean and jstl

2004-11-23 Thread Mario Neè
Hello, can i use dynabean inside a jsp using jstl ? i'm using struts 1.2.4 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]