[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread petemuir
urosmil wrote : 1) is it possible to set conversation scope in faces-config.xml; in the same way as for session scope: managed-bean-scopesession/managed-bean-scope No. And a bean declared in faces-config.xml isn't a Seam component. anonymous wrote : 2) how go get conversation scoped bean

[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread urosmil
Hi petemuir, both Contexts.lookupInStatefulContexts(myBean) and Contexts.getConversationContext().get(myBean) return null when I try to get conversation bean in session scoped bean. I open pop-up window from conversation bean (offerBean). That pop-up use other session scoped bean

[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread petemuir
Are you propagating the conversation to the popped up window? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4055570#4055570 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4055570

[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread urosmil
Hi petemuir, pop-up is not in conversation. I don't it should be inside conversation. Pop-up use other session scoped bean. Am I making mistake in use? In what situations is possible to access conversation scoped bean? Thanks, Uros! View the original post :

[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread urosmil
Hi, I will explain my problem hopping someone can help: From page which is in conversation I open pop-up window with url: offer.jsf?lang=enid=173type=offerId. Page offer.jsf use session (doesn't need to be session; can be request to) scoped bean offerPreviewBean. In offerPreviewBean bean I

[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread petemuir
Ok, fair does. Can you post the content of the popup window and any beans you call off it (offerPreviewBean, offerBean). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4055675#4055675 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Conversation - setting and getting

2007-06-19 Thread urosmil
Hi petemuir, this is link: offer.jsf?lang=enid=173type=offerId this is pages.xml part: page view-id=/offer.xhtml | param name=lang value=#{offerPreviewBean.lang}/ | param name=id value=#{offerPreviewBean.id} |converterId=javax.faces.Integer/ |