GWT + Seam, cannot fetch scoped beans from gwt servlet in seam resource servlet.
- by David Göransson
Hello all
I am trying to get session and conversation scoped beans to a gwt servlet in the seam resource servlet. I have a conversation scoped bean:
@Name ("viewFormCopyAction")
@Scope (ScopeType.CONVERSATION)
public class ViewFormCopyAction
{}
and a session scoped bean:
@Name ("authenticator")
@Scope (ScopeType.SESSION)
public class…