[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-18 Thread eirirlar
enda wrote : | There were some issues why it got deprecated and note from Gavin King was to use pages.xml for it. So if it is undeprecated then it is ok. | Actually it's not undeprecated yet but I couldn't find a way to do the same thing in pages.xml. enda wrote : | here you would

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-14 Thread enda
Hi Erik, I would have two note for your solution. 1. I do not know if Seam 2.1.0A1 undeprecated id in @Begin. As you have | @Begin(join = true, id = #{facesContext.externalContext.requestParameterMap.forsendelseId}) | There were some issues why it got deprecated and note from

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-13 Thread eirirlar
I'm struggling with similar issues regarding natural conversations, can't get them to join existing ones in a decent way. +1 for better example in the docs. Regards, Eirik View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129082#4129082 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-13 Thread eirirlar
In my application I keep getting Conversation id is already in use when I try to use the same link twice to start the natural conversation. I thought I should have a look at the seam-bay example to figure out what I did wrong, but it turns out the same problem exists there. Please try for

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-13 Thread enda
Hi Erik this is my working solution (I am handling conversation on my own) entityManager that inherits generalManager | | @Begin(flushMode = FlushModeType.MANUAL, join = true, pageflow = teamHomeFlow) | public String select(Team team) { | // set conversation |

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-13 Thread eirirlar
Hi Tomas, I was thinking about manually handling it, but since I only needed one type of conversation and wanted that one named, I ended up with this: components.xml: core:manager conversation-id-parameter=forsendelseId / view.xhtml: h:dataTable id=forsendelser value=#{forsendelser}

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-04 Thread [EMAIL PROTECTED]
1) I think I see the problem. Can you not use s:conversationPropagation type=join / in your page? I agree, it would be nicer to specify this in pages.xml, but unfortunately this isn't possible (this was the original design, but pages.xml isn't processed until much later in the lifecycle). 2)

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-04 Thread enda
I also thank you for the feedback so I tried this: | h:commandLink |styleClass=left clearBoth |action=#{teamManager.select(teamItem)} value=select |s:conversationName

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-04 Thread [EMAIL PROTECTED]
No join should either join the existing conversation, or start a new one. If this doesn't work, its a bug - please report it in JIRA. I see the problem with problem 2 and I'll think about how to best help with it. View the original post :

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-03 Thread [EMAIL PROTECTED]
Ok. Explain this one again (it sounds interesting, but I'm tired, and I got lost ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4125935#4125935 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125935

[jboss-user] [JBoss Seam] - Re: Named conversation and new instance redirected to Home?

2008-02-03 Thread enda
So imagine a scenario that you have one entity lets say people. You will provide a table of all people. You can edit people and add new people. Now you want to use jPDL and natural conversations (mix jPDL and pages.xml because jPDL does not offer you to specify conversation name). (note: I