JSP - Expecting "jsp:param" standard action with "name" and "value" attributes
I fixed this error by changing the following include tag as single tag version.
Before:
<jsp:include page="..."></jsp:include>
I changed like this,
<jsp:include page="..."/>
Now i did not get this type of exception.
In my case, I did not end tag properly. like below.
<jsp:include page="..."
>
I have changed it to
<jsp:include page="..."/>
This fix the issue for me.
If you don't close the tag in the same line, you need to have a <jsp:param name="someName" value="someValue" />
within <jsp:include></jsp:include>