Hi all, Problem statement. : When validation happens in struts 2 it will redirect to result type "Input" if type="tiles" JSP will display the validation message and If result type="redirect-action" , validation message will not get display. In order to display validation messages , I am using interceptor where validation messages are will be stored in session and the same will be displayed in JSP. Problem is validation messages are getting displayed but the values are getting lost in the text boxs. The reason for this is because its the brand request object because of redirect-action. Is there any way where i can forward to action , but still can able to retrive the previous request. ? I know we can use dispacther , but dispacther uses only ".jsp" . Regards siddiq.

