Is the myArrayList on the ActionForm that's causing the problem?

If so, Assuming that other users make changes to that ArrayList when they
change the state in their form, I would check and make sure that the
"myArrayList" is not static or is not getting populated from a singleton
source.


On 10/3/05, Preston CRAWFORD <[EMAIL PROTECTED]> wrote:
>
> Sorry about the top-posting. I need to get GroupWise figured out so I
> can have it act like other email clients.
>
> Anyway, yes, I'm sure of this. There are no instance variables in our
> actions. I test my arraylist on my Form Bean to make sure it's not
> empty, then I iterate through it.
>
> So for example...
>
> <c:if test="${! empty myFormBean.myArrayList}">
> <c:forEach items="${myFormBean.myArrayList}" var="item"
> varStatus="loop">
> <c:out value="${item.memberField}" /><br />
> </c:forEach>
> </c:if>
>
> Preston
>

Reply via email to