[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread petemuir
What you are saying makes no sense. Views aren't bound to conversations or the session, components are. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4043430#4043430 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043430

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread mnrz
petemuir wrote : What you are saying makes no sense. Views aren't bound to conversations or the session, components are. well, I meant the same component, sorry I made mistake I want to go to a page which has a component in session scope but when I want to go back to conversation it says it

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread petemuir
post code View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4043435#4043435 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043435 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread mnrz
here is the component in session scope: | @Stateful | @Name(userSetting) | @Scope(ScopeType.SESSION) | public class UserSettingAction implements UserSetting { | | private Log logger = LogFactory.getLog(SearchResultAction.class); | | private ListString selectedItems; |

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread mnrz
I think I put @Begin in wrong place because when the session is creating it will calls the @Create method and it is also lunches a conversation so this conversation is different from the next one that I will lunch later but I dont know, if I remove @Begin how can I notify to join to current

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread petemuir
You need to post *all* the code involved - not just random portions. mnrz wrote : I think I put @Begin in wrong place because when the session is creating it will calls the @Create method and it is also lunches a conversation so this conversation is different from the next one that I will lunch

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread mnrz
ok here is the page that has a button to go to setting.xhtml: | ?xml version=1.0 encoding=utf-8 ? | !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; | html xmlns=http://www.w3.org/1999/xhtml; |

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread mnrz
sorry and this is the setting.xhtml and when I click on continueButton i want to go back to last conversatin but I receive this message: The conversation ended, timed out or was processing another request | ?xml version=1.0 encoding=utf-8 ? | !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread petemuir
And the exception? The WHOLE stack trace View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4043446#4043446 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4043446 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: can I join a session with a conversation?

2007-05-05 Thread mnrz
petemuir wrote : And the exception? The WHOLE stack trace no exception I can see in tomcat console, but the first page will be displayed and the message The conversation ended, timed out or was processing another request will be displayed at that page. I expect to go back to another page but