This warning is generated since you have specified formName.action in action attribute of form.You get get rid of those by changing the action attribute to formName instead of formName.action

Reason for Error

 <s:form action="Reports.action" method="post">

Change it To

 <s:form action="Reports" method="post" namespace="/">

Leave a reply