I use websphere 8 and RAD 8 and this scriptlet output the correct value:
<%= ansokanInfo.getPSystem() %>
But using EL it outputs nothing:
${ansokanInfo.PSystem}
I can write anything between the ${
and }
and it won't render. What am I doing wrong? what should be done to enable EL expressions? This is not working either:
<c:out value="${ansokanInfo.PSystem}" />
But this is working:
<c:forEach var="i" begin="1" end="5" > <c:out value="${i}" /> </c:forEach>
My web.xml starts like this:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">