Hi all, I have a form bean which has two sets of setter and getter methods getValue1(), getId1(), getValue2(), get Id2(). I explicitly call the set methods by passing two vectors because i want the respective vectors to be available to me in the jsp. Now when struts calls the get methods when the jsp is being painted only one of vectors that were set is available. The other vector is somehow set to size 0.
When i called the set methods, the sizes of these two vectors as set in the form bean were 3 each, but at the time of get, only one vector remained at size 3, the other got reset to size 0. I have checked these with the system.out statements in the form bean and action bean. Whats wrong here? Has anyome experienced this before?