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

>>> [EMAIL PROTECTED] 9/30/2005 6:19:26 PM >>>
On 10/1/05, Preston CRAWFORD <[EMAIL PROTECTED]> wrote:
>
> We have a problem. We're working on an application and we have some
> forms in session scope. The strange thing is if someone changes state
on
> their form, users on other computers on other browsers hitting the
same
> exact page see the state change that was made to the form on another
> computer. I have no idea why this is happening. Problem with the
JVM?
> With struts? Something we're doing. Anyone ever seen this?


Are you sure that the JSPs are displayed only by using ActionForms.
This would happen for example if you use instance variables in your
Actions
to
store some state.

Tamas

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to