Well, a lot changed yesterday. I took all forms out of session and it's
still happening. I did much tinkering and discovered that it's any
object in session (so in this case the container object for the
ArrayList that gets set to the form) that's crossing sessions and
STICKING in session as well (as in I'll logout, shut down the browser,
open up the browser and there it is again). So this has me wondering if
it's related to hibernate, which we are using to populate this object. 

Preston

>>> [EMAIL PROTECTED] 10/4/2005 3:31:29 AM >>>
On 10/4/05, Preston CRAWFORD <[EMAIL PROTECTED]> wrote:
>
> No. What information would be useful and relevant? Struts-config?
The
> form bean itself? The action, the JSP? I didn't want to overload the
> list, obviously.



In the following code how do you populate and set the myArrayList
property
of the myFormBean?
If all the myFormBean instances have a reference to the same ArrayList
or
the ArrayLists are not the same
but the items from the ArrayList reference the same objects then all
users
modify and see the same
values...

<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


Tamas

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

Reply via email to