Req: Maintaining data between requests with out setting the bean to session.
What am i doing: I am using a DisplayTags , pass an ArrayList which is set to form bean to displays the Object properties it works fine , However I need these properties to be accessed in next request so i set them to session
<bean
efine id="raghu" name="newcustomerForm" property="assoc" toScope="session"/>
it works fine i am able to access them. However when i set the bean to request it fails
<bean
efine id="raghu1" name="newcustomerForm" property="assoc" toScope="request"/>
Display tag code
<display:table name="newcustomerForm.assoc" requestURI="<%=requestUri%>" decorator="us.ny.state.dot.permits.decorator.AssocDecorator" class="report" sort="list" pagesize="4" defaultsort="1">
<display:column title="Cust Num" property="custNumber" class="entry_small" sortable="true" headerClass="sortable"/>
<display:column title="Name" property="custName" class="entry_small" sortable="true" headerClass="sortable"/>
<display:column title="Disassociate" property="assocDelete" class="entry_small" sortable="true" headerClass="sortable"/>
<display:setProperty name="paging.banner.placement" value="top"/>
<display:setProperty name="paging.banner.no_items_found" value=""/>
<display:setProperty name="basic.empty.showtable" value="true" />
<display:setProperty name="sort.behavior" value="list" />
<display:setProperty name="paging.banner.include_first_last" value="true" />
<display:setProperty name="paging.banner.onepage" value="" />
<display:setProperty name="basic.msg.empty_list" value="<br>There are no Associations available." />
</display:table>
any Ideas how to maintain form data between requets, Here the object properties are not accessed as requests Parameters when using Display Tags, hence i need some way to carry them to next request but i dont want to use session as it i spoiling if user moves to different actions without saving