Yes, I agree. It is very common situation.

I also use nested conversations for this. You should end your nested 
conversation by java code.

        //@End
  |     public String cancel() {
  |             Conversation.instance().endAndRedirect(true);
  |             return null;
  |     }
  | 
or
        //@End
  |     public String cancel() {
  |             Conversation.instance().end();
  |             Conversation.instance().redirectToParent();
  |             return null;
  |     }
  | 

I am not sure for 100% for correctness of this code, but it works for me.

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

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

Reply via email to