How to evaluate values set with JSTL-Core-tag 'set' with JSF

2007-08-01 Thread Christian Nolte
Hi! I have the following problem: I have to evaluate values which have been set using JSTL-Core-tags like set or forEach using JSF-Tags like outputText to output them. The situation is like this: -- test.jsp: !-- ... -- jsp:useBean id=bean class=de.fhbswf.emaex.web.TestBean / c:set var=test

Re: How to evaluate values set with JSTL-Core-tag 'set' with JSF

2007-08-01 Thread Bryan Basham
By default the JSTL c:set tag stores the attribute in the PAGE scope. However, JSF does not know about the PAGE scope. If you really need to use c:set then specify: scope='REQUEST'. -Bryan Christian Nolte wrote: Hi! I have the following problem: I have to evaluate values which have been set