Hey,
My problem is that i can't resolve an issue with forEach.
I have hashmap declared in faces-config.xml
<managed-bean>
<managed-bean-name>brg_mapExistings</managed-bean-name>
<managed-bean-class>java.util.HashMap</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
This hashMap is filled in my ProcessAction function, ( i do also syste.out.println to check if the hashMap is not empty)
in my
jsp, however in my forEach, it will only loop once
<c:set value="#{brg_mapExistings}" var="MapEntries" scope="session" />
<c:forEach var="serv" items="MapEntries">
test some text
</c:forEach>
What am i doing wrong?
[ April 29, 2008: Message edited by: Mario Fatone ]