Here's my dilemma. JSF/PrimeFaces web application. I have a @ManagedBean bean I'll call RequestBean.java associated with request.xhtml. I have a bean @ManagedBean called ResponseBean.java associated with response.xhtml. RequestBean has a method something like List wlist = getWidgetList();
The elements in wList will populate the response.xhtml associated with ResponseBean.java.
I'm not allowed to use the Session attributes for this so it must, I believe involve @ConversationScoped.
Does anyone know of a good tutorial or example link for a problem like this?