Hi

I'm a seam beginner so I might approach the problem in the wrong way. Please 
correct and help me to solve the problem.

I have a popout class and a builder class that does the following in the click 
event

PopOut p = new PopOut();
p.begin();
p.....

My question is that how to retrieve the conversation Id of this newly created 
object.
I need to return the conversation id to the client so that the client can open 
a new window.
I assume I can do window.open(http.....jsf?conversationId=XXX)
I guess I can't have a joined conversation because a popout can open another 
popout.
So each popout should exist in its own conversation.

@Name("popout")
@Scope(..CONVERSATION)
public class PopOut {
        
        @Create
        public String create() {...}
        
        @Begin
        public String begin() {...}
        
        public void activate() {...}
        
}

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3998877#3998877

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3998877
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to