Re: request scope & paging

2006-05-04 Thread Rob Manthey
Dave Newton wrote: >Kyle W. Cartmell wrote: > > >>I understand the concept behind this, but does anyone actually use >>this in production code? Seems more trouble than it's worth since the >>user could simply start multiple sessions. >> >> > >How? Isn't that browser-dependent? > >And no, I w

Re: request scope & paging

2006-05-03 Thread Michael Jouravlev
On 5/3/06, Y. Thomas Gan <[EMAIL PROTECTED]> wrote: Dave Newton wrote: > Kyle W. Cartmell wrote: > >> I understand the concept behind this, but does anyone actually use >> this in production code? Seems more trouble than it's worth since the >> user could simply start multiple sessions. >> > > Ho

Re: request scope & paging

2006-05-03 Thread Y. Thomas Gan
Dave Newton wrote: Kyle W. Cartmell wrote: I understand the concept behind this, but does anyone actually use this in production code? Seems more trouble than it's worth since the user could simply start multiple sessions. How? Isn't that browser-dependent? And OS dependent too. On

Re: request scope & paging

2006-05-03 Thread Dave Newton
Kyle W. Cartmell wrote: > I understand the concept behind this, but does anyone actually use > this in production code? Seems more trouble than it's worth since the > user could simply start multiple sessions. How? Isn't that browser-dependent? And no, I wouldn't bother dealing with this use-case

Re: request scope & paging

2006-05-03 Thread Kyle W. Cartmell
I understand the concept behind this, but does anyone actually use this in production code? Seems more trouble than it's worth since the user could simply start multiple sessions. Michael Jouravlev wrote: On 5/3/06, Y. Thomas Gan <[EMAIL PROTECTED]> wrote: Is there a way in struts to chain a

Re: request scope & paging

2006-05-03 Thread Michael Jouravlev
On 5/3/06, Y. Thomas Gan <[EMAIL PROTECTED]> wrote: Is there a way in struts to chain a series of requests (paging through a list) and pass data through request scope? In my scenario, I keep the a result list in session, but this prevents me from opening two windows (same session) and paging thro

request scope & paging

2006-05-03 Thread Y. Thomas Gan
Is there a way in struts to chain a series of requests (paging through a list) and pass data through request scope? In my scenario, I keep the a result list in session, but this prevents me from opening two windows (same session) and paging through two different lists (one in each window) indepe