Re: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread John Moore
Andrew Hill wrote: That will destroy *everything* in the users session. Yes, it is a bit brutal, but it is precisely what I wanted. The user has completed a purchase, having entered credit card details and all. This logs them out completely, which is what I needed. Adam's requirement may we

RE: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread Adam Lipscombe
That seems like the best bet. Many thanks -Original Message- From: Yves Sy [mailto:[EMAIL PROTECTED] Sent: 14 May 2004 11:42 To: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: RE: Newbie question: Deleting an ActionForm that is in session scope. That doesn

RE: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread Yves Sy
removeAttribute("yourActionFormNameDeclaredInTheStrutsConfig") Regards, -Yves- > -Original Message- > From: John Moore [mailto:[EMAIL PROTECTED] > Sent: Friday, May 14, 2004 6:25 PM > To: Struts Users Mailing List > Subject: Re: Newbie question: Deleting an ActionForm that is in session > sc

RE: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread Andrew Hill
That will destroy *everything* in the users session. -Original Message- From: John Moore [mailto:[EMAIL PROTECTED] Sent: Friday, 14 May 2004 18:25 To: Struts Users Mailing List Subject: Re: Newbie question: Deleting an ActionForm that is in session scope. Adam Lipscombe wrote: >Fo

R: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread Amleto Di Salle
s Users Mailing List Oggetto: RE: Newbie question: Deleting an ActionForm that is in session scope. Yes, you can just remove the form from the session. Struts will create a new one when its needed. :-) -Original Message- From: Adam Lipscombe [mailto:[EMAIL PROTECTED] Sent: Friday, 14 Ma

Re: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread John Moore
Adam Lipscombe wrote: Folks, I have a wizard framework that uses the same ActionForm to collect data as the wizard progresses. The scope of the ActionForm is session so that values are preserved when the user navigates back and forwards through the wizard. When I get to the end of the wizard, I d

RE: Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread Andrew Hill
Yes, you can just remove the form from the session. Struts will create a new one when its needed. :-) -Original Message- From: Adam Lipscombe [mailto:[EMAIL PROTECTED] Sent: Friday, 14 May 2004 18:15 To: [EMAIL PROTECTED] Subject: Newbie question: Deleting an ActionForm that is in session

Newbie question: Deleting an ActionForm that is in session scope.

2004-05-14 Thread Adam Lipscombe
Folks, I have a wizard framework that uses the same ActionForm to collect data as the wizard progresses. The scope of the ActionForm is session so that values are preserved when the user navigates back and forwards through the wizard. When I get to the end of the wizard, I don't want the same