Re: To create new session without invalidating existing one

2011-10-03 Thread Aaron Brown
t; - Original Message - > From: "Dave Newton" > To: "Struts Users Mailing List" > Sent: Friday, September 30, 2011 6:33 PM > Subject: Re: To create new session without invalidating existing one > > >> On Fri, Sep 30, 2011 at 7:46 AM, Ganesh

Re: To create new session without invalidating existing one

2011-10-03 Thread Ganesh
" To: "Struts Users Mailing List" Sent: Friday, September 30, 2011 6:33 PM Subject: Re: To create new session without invalidating existing one > On Fri, Sep 30, 2011 at 7:46 AM, Ganesh wrote: > >> Is there any way to retireve the form data using request.getParameter()

Re: To create new session without invalidating existing one

2011-09-30 Thread Dave Newton
On Fri, Sep 30, 2011 at 7:46 AM, Ganesh wrote: > Is there any way to retireve the form data using request.getParameter(); If > the ID is part of hidden variable then it is returning null. Any ways to > retrieve data without using Form object. > If it's part of the form, and you're setting it, but

Re: To create new session without invalidating existing one

2011-09-30 Thread Ganesh
Ganesh - Original Message - From: "roger" To: Sent: Friday, September 30, 2011 1:25 PM Subject: Re: To create new session without invalidating existing one > You may want to take a look at the Scope plugin. This won't give you a new > session, but it does provide

Re: To create new session without invalidating existing one

2011-09-30 Thread roger
You may want to take a look at the Scope plugin. This won't give you a new session, but it does provide an implementation of conversation scope which may suffice. Regards -- View this message in context: http://struts.1045723.n5.nabble.com/To-create-new-session-without-invalidating-existin

Re: To create new session without invalidating existing one

2011-09-29 Thread Brian Thompson
On Thu, Sep 29, 2011 at 3:58 AM, Marcus Bond wrote: > What is the reason for the new session? Doesn't sound a great plan. > Anyway you're going to have a problem as this isn't how browsers expect to > work, that said Chrome allows incognito browsing so that might work but it > isn’t generally the

RE: To create new session without invalidating existing one

2011-09-29 Thread Marcus Bond
-Original Message- From: Velmurugan M [mailto:velmurug...@gmail.com] Sent: 29 September 2011 09:23 To: Struts Users Mailing List Subject: Re: To create new session without invalidating existing one -Original Message- From: Brian Thompson Date: Thu, 29 Sep 2011 01:26:48 To: Strut

Re: To create new session without invalidating existing one

2011-09-29 Thread Velmurugan M
-Original Message- From: Brian Thompson Date: Thu, 29 Sep 2011 01:26:48 To: Struts Users Mailing List Reply-To: "Struts Users Mailing List" Subject: Re: To create new session without invalidating existing one Well, first I'd suggest dropping the requirement for la

Re: To create new session without invalidating existing one

2011-09-28 Thread Brian Thompson
Well, first I'd suggest dropping the requirement for launching the new browser window. It's a pretty user-hostile way to program a site. "Hey, why'd my Back button stop working? Sigh, call IT again." That said, you could try launching the popup window with a URL on a different subdomain. That

To create new session without invalidating existing one

2011-09-28 Thread Ganesh
Hello all, We have a requirement to launch a new browser window with new session but the exisiting session with parent browser should not be disturbed. We tried couple of methods the new session is created but the existing session is modified. Could some one throw me light on this. Regards Gan