Sh*t - the rewrite rules I gave in my last post caused a problem:
If you have configured redirect-after-post in your faces-config.xml, then page parameters
are lost during redirection.
Page parameters work fine if I either disabley tuckey or comment the < redirect />
tags in my faces-config.xml
No idea why or if it can be solved.
As a workaround here's what I now use instead:
| <urlrewrite use-query-string="true">
| <!-- Prevent to ever serve raw xhtml by transparently mapping *.xhtml to *.seam
and back -->
| <rule match-type="wildcard">
| <from>/**.xhtml**</from>
| <to type="redirect">%{context-path}/$1.seam$2</to>
| </rule>
| </urlrewrite>
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087951#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...