Hi, I've been trying to use OpenLaszlo and JSTL but I have not been able
that it works properly.
Here my JSP test page:
<%@ page
contentType="text/plain; charset=ISO-8859-1" pageEncoding="ISO-8859-1"
isErrorPage="false" session="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:out value="JSTL installed " />
<c:if test="${2 gt 1}"> and working!!! </c:if>
And the output is:
JSTL installed
But if I deploy the same page in another directory inside webapps I get the
following output:
JSTL installed and working!!!
Is there any conflict between openlaszlo and jstl configuration or library?
I am using tomcat 6.0.26 and openlaszlo-4.9.0.
Thanks in advance.