For a Seam application, I am trying to pass page parameters after encountering a ViewExpiredException in pages.xml (session time out) on the redirect view but they get dropped when the browser redirects to the view.
<exception class="javax.faces.application.ViewExpiredException">
<redirect view-id='/accessExpired.xhtml'>
<param name="hiddenRoleTag" value="BORROWER" />
</redirect>
</exception>
the page parameter would actually be dynamic and the page would display text based on the page parameter but for simplicity I have kept the param as static (for now).
Any way around this?