Re: prepare method not working

2009-03-05 Thread markbeek
vhumble wrote: > > Even after implementing the prepare method, I still get the same error as > before and when I debug with eclipse, i never enter into prepare method. I > am using basic struts-default stack and in this stack, prepare comes > before validation. > You do need to implement the

Re: prepare method not working

2009-03-05 Thread vhumble
Thanks Dave. It is working after I implemented the Preparable interface vhumble wrote: > > Thank you. As of now I am not implementing Preparable. But I will try > implementing it and see. I thought the order of interceptors in > struts-default package will automatically take precedence and get a

Re: prepare method not working

2009-03-05 Thread Dave Newton
vhumble wrote: Thank you. As of now I am not implementing Preparable. But I will try implementing it and see. I thought the order of interceptors in struts-default package will automatically take precedence and get applied as validation happens automatically. It does, but validation != preparab

Re: prepare method not working

2009-03-05 Thread vhumble
Thank you. As of now I am not implementing Preparable. But I will try implementing it and see. I thought the order of interceptors in struts-default package will automatically take precedence and get applied as validation happens automatically. newton.dave wrote: > > vhumble wrote: >> Is there

Re: prepare method not working

2009-03-04 Thread Dave Newton
vhumble wrote: Is there anything else that I need to do to get prepare method working like specifically implementing preparable interface. Are you, or are you not, implementing Preparable? You need to, AFAIK. Is there documentation that suggests otherwise? Dave