Re: Struts 1.2 using formbeans

2007-08-15 Thread Jasper Floor
hmm, I assume the input fields have the same name as the relevant form properties. Case is important. Perhaps you need an input parameter in your action definition. input=inputform.jsp or something along those lines. - To unsubsc

Re: Struts 1.2 using formbeans

2007-08-14 Thread Maya menon
i TRIED SETTING THE REDIRECT=TRUE ALSO, but still it doesnt display the values when coming back to the original window. Can this be an issue ? From inputform, I have a submit button which opens another window and calls submitaction. In the new window I am displaying the 3rd parameter

Re: Struts 1.2 using formbeans

2007-08-14 Thread Maya menon
Chris, Thanks for the reply, I dont have redirect=true Here is the action: Thanks again, Christopher Schultz <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Maya, Maya menon wrote: > In submitAction, I call setter method of formbean and s

Re: Struts 1.2 using formbeans

2007-08-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Maya, Maya menon wrote: > In submitAction, I call setter method of formbean and sets the 3rd > parameter and do mapping.findforward Does the forward you are using have redirect="true"? If so, the form bean might be lost of the form bean is not in ses

Struts 1.2 using formbeans

2007-08-14 Thread Maya menon
Hi all, I need some help here. I am using Struts 1.2 1. I have inputForm1.jsp where I input 2 values and then fetch the 3rd value using a Submit action. This has been mapped to Submit.do and inputFormBean is referrenced in the struts-config file. Inside action class Submit.do, th