Hello, guys.
I believe that my question is silly but it is the correct place to ask:
I have the following code:
...
@In(required=false,scope=CONVERSATION) @Out(required=true,scope=CONVERSATION)
private List someBeans;
...
@Factory("someBeans")
public void someBeansDoInit(){
...
}
...
The Facelet has this code:
<h:commandButton value="OK"
actionListener="#{theAction.doSomething}">
<f:param name="conversationId" value="#{conversation.id}" />
</h:commandButton>
The issue is that the value of 'someBeans' is lost. In debug mode in Eclipse I see
that someBeans=null, which makes me think that somehow the conversation is lost. Or not ?
Thank you for your help in advance.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112197#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...