Help

Controls

PermLinkWikiLink

Built with Seam

You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.

Forum: Seam Users Forum ListTopic List
30. Jul 2008, 17:03 CET | Link


Hi, I'm using a command button that's start a pageflow, but if this button are inside a pageflow the error is IllegalStateException with message: "long-running conversation already active"

Any idea? the problem is present in richfaces menu item

            <h:commandButton value="type=begin pageflow=home" >
                <s:conversationPropagation type="begin" pageflow="home"/>
            </h:commandButton>

(forgive my english)

1 Reply:
30. Jul 2008, 17:27 CET | Link
this example works,


<s:button pageflow="home" propagation="begin" value="s:button type=begin pageflow=home"></s:button>


and this too
<rich:menuItem>
                            <s:button pageflow="home" propagation="begin" value="s:button type=begin pageflow=home"></s:button>
                        </rich:menuItem>