In seam documentation is many various combinations of managing workspace.
But it seem like there is not a combination that would allow to redirect in jPDL and to
specify description together.
There are examples where I can use pages.xml like this
====================================================
<page view-id="/private/people/personHomeView.xhtml"
conversation-required="true"
no-conversation-view-id="/private/home.xhtml">
Foo at #{bar.circle}
====================================================
but this is completely ignored when I use pageflow jPDL!
other alternative is to use jPDL
====================================================
<page name="viewPersonHomeAjax"
timeout="600000"
view-id="/private/people/personHomeAjax.xhtml">
View person home: #{person.username}
====================================================
but then I cannot use redirect!
this fails to deploy:
====================================================
<page name="viewPersonHomeAjax"
timeout="600000"
view-id="/private/people/personHomeAjax.xhtml">
View person home: #{person.username}
====================================================
this is ignored at all (what is the purpose of that???):
====================================================
<page name="viewPersonHomeAjax"
timeout="600000"
redirect="yes"
view-id="/private/people/personHomeAjax.xhtml">
View person home: #{person.username}
====================================================
Maybe there is some magic combination but then it is not in documentation.
Does anyone figure it out?
Tomas
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106038#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...