RE: cant reset form

2005-11-10 Thread Garner, Shawn
Isn't there two different reset methods.  One taking in Request params and
other taking in HTTPRequest params?

Maybe you have the wrong one overridden?


Shawn D. Garner

-Original Message-
From: Chris Pat [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 09, 2005 10:04 PM
To: Struts Users Mailing List
Subject: cant reset form

Hello
I have an app with three fields on the form.  It all
works fine and I even have the Reset method assigning
blank strings.  The problem, Reset never works.  I
submit the form and the form values  do not clear. 
This is even more unbelievable, I down TC, recompile
the war, place it in webapps, start TC, and STILL the
same values.  How can this happern, what am I clearly
not doing?  

Also, If I wanted the form to keep a dynamic list per
field of the values entered per session per form with
the browser, is there an easy way to do that?  Thank you.




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 
This email may contain confidential material. 
If you were not an intended recipient, 
Please notify the sender and delete all copies. 
We may monitor email to and from our network. 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cant reset form

2005-11-09 Thread Chris Pat
Hi Paul
Sorry.  The more I think about there are probably
better and more secure ways to do and not to do it.  I
was thinking of form with fields that "remembered" the
last n number of entries and made then available on a
combo box in the field for repeated entry.  It
definitely would not be good for a banking but there
likely some legitimate or enduser convenience uses. 
It really explores what can be done with an
ActionForm.  I know the answer is probably, "anything
you want, it is a bean".  Sorry if I just wasted you
and others time.  

--- Paul Benedict <[EMAIL PROTECTED]> wrote:

> >>Not to be greedy, however is it possible to have a
> >>form dynamically save and make selectable the
> previous
> >>field entries?
> 
> You need to be more clear. I don't understand this.
> 
> 
> 
> 
>   
> __ 
> Yahoo! FareChase: Search multiple travel sites in
> one click.
> http://farechase.yahoo.com
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 





__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: cant reset form

2005-11-09 Thread David G. Friedman
Chris,

What do you want to do, push the results onto
a stack/list to pop them back out if you need
to change something, or would an HTML form's
reset button work for you (as a client-side
solution).

Regards,
David

-Original Message-
From: Chris Pat [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 10, 2005 12:10 AM
To: Struts Users Mailing List
Subject: Re: cant reset form


Hi Paul
A very complete and informative answer.  I learned. 
Thanks.

Not to be greedy, however is it possible to have a
form dynamically save and make selectable the previous
field entries?  From this discussion it seems like no.
 Is that something you would do in the ActionForm? 
Broadly speaking, how much processing can I do in an
ActionForm?  Right now I just see it as a passive
conduit into the Action, maybee with validation.  Are
they useful beyond that?

--- Paul Benedict <[EMAIL PROTECTED]> wrote:

> Pat, forms are stored in the sesion. If you want to
> reset it, simply remove it from the session
> like the following:
>
request.getSession(false).removeAttribute("yourFormName");
> 
> The next time Struts invokes the action, it will
> re-create it if it is missing. So you're learning
> the downside of using session forms, which is that
> you have to clear it out of memory when you're
> finished.
> 
> -- Paul
> 
> --- Chris Pat <[EMAIL PROTECTED]> wrote:
> 
> > Thanks Pat & rajasekhar
> > I will do that.  
> > However is there a way to stop the serialization
> or
> > force the clearing of the form fields and keep the
> > session otherwise instantiated?  I can see the
> need
> > store/create objects in the session, possibly with
> a
> > form bean, but want my fields clear.  Just a
> newbie. 
> > Thanks.
> > 
> > --- Paul Benedict <[EMAIL PROTECTED]> wrote:
> > 
> > > Pat,
> > > 
> > > It's possible by restarting the tomcat server,
> > > you're serializing the session -- it's called a
> > > "sticky session" -- which sticks around between
> > > restarts. 
> > > 
> > > I am not aware of anyone using reset(). If you
> also
> > > need to clear the form fields, why not use a
> > > request scope form? It sounds like you have your
> > > form in session scope so the last submit is
> > > always in memory; set scope="request" on the
> > >  definition and this will solve it. 
> > > 
> > > --- Chris Pat <[EMAIL PROTECTED]> wrote:
> > > 
> > > > Hello
> > > > I have an app with three fields on the form. 
> It
> > > all
> > > > works fine and I even have the Reset method
> > > assigning
> > > > blank strings.  The problem, Reset never
> works.  I
> > > > submit the form and the form values  do not
> clear.
> > > 
> > > > This is even more unbelievable, I down TC,
> > > recompile
> > > > the war, place it in webapps, start TC, and
> STILL
> > > the
> > > > same values.  How can this happern, what am I
> > > clearly
> > > > not doing?  
> > > > 
> > > > Also, If I wanted the form to keep a dynamic
> list
> > > per
> > > > field of the values entered per session per
> form
> > > with
> > > > the browser, is there an easy way to do that? 
> > > Thank you.
> > > > 
> > > > 
> > > > 
> > > > 
> > > > __ 
> > > > Yahoo! Mail - PC Magazine Editors' Choice 2005
> 
> > > > http://mail.yahoo.com
> > > > 
> > > >
> > >
> >
>
-
> > > > To unsubscribe, e-mail:
> > > [EMAIL PROTECTED]
> > > > For additional commands, e-mail:
> > > [EMAIL PROTECTED]
> > > > 
> > > > 
> > > 
> > > 
> > > 
> > >   
> > >   
> > > __ 
> > > Yahoo! Mail - PC Magazine Editors' Choice 2005 
> > > http://mail.yahoo.com
> > > 
> > >
> >
>
-
> > > To unsubscribe, e-mail:
> > > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > > [EMAIL PROTECTED]
> > > 
> > > 
> > 
> > 
> > 
> > 
> > 
> > __ 
> &

Re: cant reset form

2005-11-09 Thread Paul Benedict
>>Not to be greedy, however is it possible to have a
>>form dynamically save and make selectable the previous
>>field entries?

You need to be more clear. I don't understand this.





__ 
Yahoo! FareChase: Search multiple travel sites in one click.
http://farechase.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cant reset form

2005-11-09 Thread Chris Pat
Hi Paul
A very complete and informative answer.  I learned. 
Thanks.

Not to be greedy, however is it possible to have a
form dynamically save and make selectable the previous
field entries?  From this discussion it seems like no.
 Is that something you would do in the ActionForm? 
Broadly speaking, how much processing can I do in an
ActionForm?  Right now I just see it as a passive
conduit into the Action, maybee with validation.  Are
they useful beyond that?

--- Paul Benedict <[EMAIL PROTECTED]> wrote:

> Pat, forms are stored in the sesion. If you want to
> reset it, simply remove it from the session
> like the following:
>
request.getSession(false).removeAttribute("yourFormName");
> 
> The next time Struts invokes the action, it will
> re-create it if it is missing. So you're learning
> the downside of using session forms, which is that
> you have to clear it out of memory when you're
> finished.
> 
> -- Paul
> 
> --- Chris Pat <[EMAIL PROTECTED]> wrote:
> 
> > Thanks Pat & rajasekhar
> > I will do that.  
> > However is there a way to stop the serialization
> or
> > force the clearing of the form fields and keep the
> > session otherwise instantiated?  I can see the
> need
> > store/create objects in the session, possibly with
> a
> > form bean, but want my fields clear.  Just a
> newbie. 
> > Thanks.
> > 
> > --- Paul Benedict <[EMAIL PROTECTED]> wrote:
> > 
> > > Pat,
> > > 
> > > It's possible by restarting the tomcat server,
> > > you're serializing the session -- it's called a
> > > "sticky session" -- which sticks around between
> > > restarts. 
> > > 
> > > I am not aware of anyone using reset(). If you
> also
> > > need to clear the form fields, why not use a
> > > request scope form? It sounds like you have your
> > > form in session scope so the last submit is
> > > always in memory; set scope="request" on the
> > >  definition and this will solve it. 
> > > 
> > > --- Chris Pat <[EMAIL PROTECTED]> wrote:
> > > 
> > > > Hello
> > > > I have an app with three fields on the form. 
> It
> > > all
> > > > works fine and I even have the Reset method
> > > assigning
> > > > blank strings.  The problem, Reset never
> works.  I
> > > > submit the form and the form values  do not
> clear.
> > > 
> > > > This is even more unbelievable, I down TC,
> > > recompile
> > > > the war, place it in webapps, start TC, and
> STILL
> > > the
> > > > same values.  How can this happern, what am I
> > > clearly
> > > > not doing?  
> > > > 
> > > > Also, If I wanted the form to keep a dynamic
> list
> > > per
> > > > field of the values entered per session per
> form
> > > with
> > > > the browser, is there an easy way to do that? 
> > > Thank you.
> > > > 
> > > > 
> > > > 
> > > > 
> > > > __ 
> > > > Yahoo! Mail - PC Magazine Editors' Choice 2005
> 
> > > > http://mail.yahoo.com
> > > > 
> > > >
> > >
> >
>
-
> > > > To unsubscribe, e-mail:
> > > [EMAIL PROTECTED]
> > > > For additional commands, e-mail:
> > > [EMAIL PROTECTED]
> > > > 
> > > > 
> > > 
> > > 
> > > 
> > >   
> > >   
> > > __ 
> > > Yahoo! Mail - PC Magazine Editors' Choice 2005 
> > > http://mail.yahoo.com
> > > 
> > >
> >
>
-
> > > To unsubscribe, e-mail:
> > > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > > [EMAIL PROTECTED]
> > > 
> > > 
> > 
> > 
> > 
> > 
> > 
> > __ 
> > Yahoo! Mail - PC Magazine Editors' Choice 2005 
> > http://mail.yahoo.com
> > 
> >
>
-
> > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > For additional commands, e-mail:
> [EMAIL PROTECTED]
> > 
> > 
> 
> 
> 
>   
>   
> __ 
> Yahoo! Mail - PC Magazine Editors' Choice 2005 
> http://mail.yahoo.com
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 




__ 
Yahoo! FareChase: Search multiple travel sites in one click.
http://farechase.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cant reset form

2005-11-09 Thread Paul Benedict
Pat, forms are stored in the sesion. If you want to reset it, simply remove it 
from the session
like the following: request.getSession(false).removeAttribute("yourFormName");

The next time Struts invokes the action, it will re-create it if it is missing. 
So you're learning
the downside of using session forms, which is that you have to clear it out of 
memory when you're
finished.

-- Paul

--- Chris Pat <[EMAIL PROTECTED]> wrote:

> Thanks Pat & rajasekhar
> I will do that.  
> However is there a way to stop the serialization or
> force the clearing of the form fields and keep the
> session otherwise instantiated?  I can see the need
> store/create objects in the session, possibly with a
> form bean, but want my fields clear.  Just a newbie. 
> Thanks.
> 
> --- Paul Benedict <[EMAIL PROTECTED]> wrote:
> 
> > Pat,
> > 
> > It's possible by restarting the tomcat server,
> > you're serializing the session -- it's called a
> > "sticky session" -- which sticks around between
> > restarts. 
> > 
> > I am not aware of anyone using reset(). If you also
> > need to clear the form fields, why not use a
> > request scope form? It sounds like you have your
> > form in session scope so the last submit is
> > always in memory; set scope="request" on the
> >  definition and this will solve it. 
> > 
> > --- Chris Pat <[EMAIL PROTECTED]> wrote:
> > 
> > > Hello
> > > I have an app with three fields on the form.  It
> > all
> > > works fine and I even have the Reset method
> > assigning
> > > blank strings.  The problem, Reset never works.  I
> > > submit the form and the form values  do not clear.
> > 
> > > This is even more unbelievable, I down TC,
> > recompile
> > > the war, place it in webapps, start TC, and STILL
> > the
> > > same values.  How can this happern, what am I
> > clearly
> > > not doing?  
> > > 
> > > Also, If I wanted the form to keep a dynamic list
> > per
> > > field of the values entered per session per form
> > with
> > > the browser, is there an easy way to do that? 
> > Thank you.
> > > 
> > > 
> > >   
> > >   
> > > __ 
> > > Yahoo! Mail - PC Magazine Editors' Choice 2005 
> > > http://mail.yahoo.com
> > > 
> > >
> >
> -
> > > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > > 
> > > 
> > 
> > 
> > 
> > 
> > 
> > __ 
> > Yahoo! Mail - PC Magazine Editors' Choice 2005 
> > http://mail.yahoo.com
> > 
> >
> -
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > 
> > 
> 
> 
> 
>   
>   
> __ 
> Yahoo! Mail - PC Magazine Editors' Choice 2005 
> http://mail.yahoo.com
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 





__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cant reset form

2005-11-09 Thread Chris Pat
Thanks Pat & rajasekhar
I will do that.  
However is there a way to stop the serialization or
force the clearing of the form fields and keep the
session otherwise instantiated?  I can see the need
store/create objects in the session, possibly with a
form bean, but want my fields clear.  Just a newbie. 
Thanks.

--- Paul Benedict <[EMAIL PROTECTED]> wrote:

> Pat,
> 
> It's possible by restarting the tomcat server,
> you're serializing the session -- it's called a
> "sticky session" -- which sticks around between
> restarts. 
> 
> I am not aware of anyone using reset(). If you also
> need to clear the form fields, why not use a
> request scope form? It sounds like you have your
> form in session scope so the last submit is
> always in memory; set scope="request" on the
>  definition and this will solve it. 
> 
> --- Chris Pat <[EMAIL PROTECTED]> wrote:
> 
> > Hello
> > I have an app with three fields on the form.  It
> all
> > works fine and I even have the Reset method
> assigning
> > blank strings.  The problem, Reset never works.  I
> > submit the form and the form values  do not clear.
> 
> > This is even more unbelievable, I down TC,
> recompile
> > the war, place it in webapps, start TC, and STILL
> the
> > same values.  How can this happern, what am I
> clearly
> > not doing?  
> > 
> > Also, If I wanted the form to keep a dynamic list
> per
> > field of the values entered per session per form
> with
> > the browser, is there an easy way to do that? 
> Thank you.
> > 
> > 
> > 
> > 
> > __ 
> > Yahoo! Mail - PC Magazine Editors' Choice 2005 
> > http://mail.yahoo.com
> > 
> >
>
-
> > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > For additional commands, e-mail:
> [EMAIL PROTECTED]
> > 
> > 
> 
> 
> 
>   
>   
> __ 
> Yahoo! Mail - PC Magazine Editors' Choice 2005 
> http://mail.yahoo.com
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 





__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cant reset form

2005-11-09 Thread rajasekhar . cherukuri
Hi Chris,
Why don't you try making the scope of the form as "request" ?





Chris Pat <[EMAIL PROTECTED]> 
11/10/2005 09:33 AM
Please respond to
"Struts Users Mailing List" 


To
Struts Users Mailing List 
cc

Subject
cant reset form






Hello
I have an app with three fields on the form.  It all
works fine and I even have the Reset method assigning
blank strings.  The problem, Reset never works.  I
submit the form and the form values  do not clear. 
This is even more unbelievable, I down TC, recompile
the war, place it in webapps, start TC, and STILL the
same values.  How can this happern, what am I clearly
not doing? 

Also, If I wanted the form to keep a dynamic list per
field of the values entered per session per form with
the browser, is there an easy way to do that?  Thank you.


 
 
__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


ForwardSourceID:NT801E 


Notice: The information contained in this e-mail message and/or attachments to 
it may contain confidential or privileged information. If you are not the 
intended recipient, any dissemination, use, review, distribution, printing or 
copying of the information contained in this e-mail message and/or attachments 
to it are strictly prohibited. If you have received this communication in 
error, please notify us by reply e-mail or telephone and immediately and 
permanently delete the message and any attachments. Thank you



Re: cant reset form

2005-11-09 Thread Paul Benedict
Pat,

It's possible by restarting the tomcat server, you're serializing the session 
-- it's called a
"sticky session" -- which sticks around between restarts. 

I am not aware of anyone using reset(). If you also need to clear the form 
fields, why not use a
request scope form? It sounds like you have your form in session scope so the 
last submit is
always in memory; set scope="request" on the  definition and this will 
solve it. 

--- Chris Pat <[EMAIL PROTECTED]> wrote:

> Hello
> I have an app with three fields on the form.  It all
> works fine and I even have the Reset method assigning
> blank strings.  The problem, Reset never works.  I
> submit the form and the form values  do not clear. 
> This is even more unbelievable, I down TC, recompile
> the war, place it in webapps, start TC, and STILL the
> same values.  How can this happern, what am I clearly
> not doing?  
> 
> Also, If I wanted the form to keep a dynamic list per
> field of the values entered per session per form with
> the browser, is there an easy way to do that?  Thank you.
> 
> 
>   
>   
> __ 
> Yahoo! Mail - PC Magazine Editors' Choice 2005 
> http://mail.yahoo.com
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 





__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cant reset form

2005-11-09 Thread Chris Pat
Hello
I have an app with three fields on the form.  It all
works fine and I even have the Reset method assigning
blank strings.  The problem, Reset never works.  I
submit the form and the form values  do not clear. 
This is even more unbelievable, I down TC, recompile
the war, place it in webapps, start TC, and STILL the
same values.  How can this happern, what am I clearly
not doing?  

Also, If I wanted the form to keep a dynamic list per
field of the values entered per session per form with
the browser, is there an easy way to do that?  Thank you.




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]