Guys, I know it's anathema to use JSF with JSPs, but since people have already invested in JSP, it's kind of unavoidable. Also, the mixup of the two technologies is promoted by the JSF spec team.
Now, let's say I want to have a paragraph with text, where the text comes from some managed bean. I do this: <p> <h:outputText value="myBean.text"/> </p> This doesn't work because the execution flow of the JSF model doesn't correspond to the flow of source code in my JSP page. Is there a standard way to overcome this problem? Thanks, Bolerio