Hi, I'm doing something like "colection forms". That means, that user has some forms (more than 2) and goes through then. From each form he can submit data from all colection forms to the business logic (EJB). Problem is, that he can skip some form, which has invalid fields. Struts can via struts-config with validation="true" validate current submitted form. But I need after submit validate not just current form but also formbeans stored in session (keys, under which are forms in session I know). How can I do that? miro

