Hi, In the process of migrating from struts1.1 to 1.2.4, the following problem arises: Often in an action-execute(), I pre-populate a form bean and save it into the session in order to subsequently show these values in the next jsp containing that same form.
Now, all such form field values arrive empty in the jsp? Anyone else experienced the same? Any hints would be highly appreciated! Ralf P.S.: What worked before public class LoadLoginAction extends Action ... loginForm.setFullName("Ralf Hauser"); ... session.setAttribute("loginFormKey", loginForm); and in the login.jsp: <html:text property="fullName" name="loginFormKey" /> Or also <bean:write name="loginFormKey" property="fullName" filter="true"/> Now, both of these no longer work? P.S.: I had originally posted this on http://issues.apache.org/bugzilla/show_bug.cgi?id=31320 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]