hello,
I'm new to seam and I am trying to get conversations to work.
My problem concerns two jsf pages and one bean.
in the 1. jsf page I simply call the bean:
<s:link value="letsgo" action="#{actions.letsGo}"/>
the bean is supposed to be conversational:
@Scope(CONVERSATION)
@Name("actions")
@LoggedIn
public class Actions implements Serializable{
...
@Begin()
public String letsGo() {
return "showit";
}
public String showItAgain() {
return "showit";
}