Re: ArrayList always NULL when posting data in a form

2007-03-06 Thread Dave Newton
--- Eider Iturbe <[EMAIL PROTECTED]> wrote: > > private ArrayList entitylist = > new > > ArrayList(); Yeah; that too. I thought we had a little talk about coding to interfaces, not implementations ;) d. It

Re: ArrayList always NULL when posting data in a form

2007-03-06 Thread Eider Iturbe
Hello, you can not define the ArrayList like you did it. You have to define like this: The collection to be iterated over MUST conform to one of the following requirements in order for iteration to be successful: - An array of Java objects or primitives. - An implementation of java.util.Co