Using jsp:param / c:param in a Portlet Environment
I'm trying to include JSP pages with jsp:param in a Portlet environment (using the Pluto portlet container). for example, <jsp:include page="test.jsp"> <jsp:param name="foo" value="bar"/> </jsp:include> and in test.jsp, <c:out value="${foo}"/> or <%= request.getParameter("foo") %> The output is always null and i've also tried using c tags, but got the same result. <c:import url="test.jsp"> <c:param name="foo" value="bar"/> </c:import> I've searched through the net and many people have faced the same problem, except that there is no solution to it. Is this a limitation or is there a different