While migration of code from WebSphere to JBoss below mentioned error was observed.
Expecting "jsp:param" standard action with "name" and "value" attributes
Solution :
Replace old code
<jsp:include flush="true" page="file.jsp">
</jsp:include>
OR
<jsp:forward page="file.jsp">
</jsp:forward>
With new code
<jsp:include flush="true" page="file.jsp"/>
OR
<jsp:forward page="file.jsp"/>
Expecting "jsp:param" standard action with "name" and "value" attributes
Solution :
Replace old code
<jsp:include flush="true" page="file.jsp">
</jsp:include>
OR
<jsp:forward page="file.jsp">
</jsp:forward>
With new code
<jsp:include flush="true" page="file.jsp"/>
OR
<jsp:forward page="file.jsp"/>