Well, if you don't send us the code it's hard to help with this one... :-)

You should try to narrow down things that could cause the behaviour.
For examle:
- Try to deploy to another server to be sure that it is not a Tomcat bug.
(if you just want to be sure that it's not cause by the 5.0.x bug you can
try to
deploy to Tomcat 5.5.x )
- Try to eliminate Hibernate from the process, I mean populate the object
with hard coded data and put that in session.
- I don't know how do you populate the objects, if it's a complicated
process
try to take out some of the functionality temporary until you get to the
point
when it does work.

Tamas

On 10/4/05, Preston CRAWFORD <[EMAIL PROTECTED]> wrote:
>
> 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