Tuesday, August 9, 2011

JBoss error : Expecting "jsp:param" standard action with "name" and "value" attributes

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"/>