Re: IndexedPropertyDescriptor has null readMethod/writeMethod

2004-03-05 Thread Niall Pemberton
//td tdnumber:html:text name=thing property=number indexed=true//td /tr /logic:iterate - Original Message - From: Paul Stanton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 05, 2004 1:46 AM Subject: IndexedPropertyDescriptor has null readMethod/writeMethod hi. i am

IndexedPropertyDescriptor has null readMethod/writeMethod

2004-03-04 Thread Paul Stanton
hi. i am trying use work with an indexed property in struts 1.1. i have set up my form bean as follows: code public class WelcomeForm extends ActionForm { List things = new ArrayList(); public List getThings() { return things; }

Re: IndexedPropertyDescriptor has null readMethod/writeMethod

2004-03-04 Thread Hubert Rabago
There was some discussion a few days back about a case similar to yours, where the accessor methods are overloaded. IIRC, that's what's causing the problem. I haven't seen this problem myself, just repeating what's been said here on the list. Check the archives and/or rename your accessors.

Re: IndexedPropertyDescriptor has null readMethod/writeMethod

2004-03-04 Thread Paul Stanton
Thanks. changed indexed get/sets to getThing/setThing. works now.. but i'm sure i've done it with overloading before? not going to argue tho ;) Hubert Rabago wrote: There was some discussion a few days back about a case similar to yours, where the accessor methods are overloaded. IIRC, that's