[jboss-user] [JBoss Seam] - Login Redirection
rlhr
do-not-reply at jboss.com
Wed Aug 29 11:34:25 EDT 2007
I'm using JBoss4.2.0.GA with jboss-seam-CVS.2007-08-22_00-49-47
I have the following pages.xml configuration:
| <pages xmlns="http://jboss.com/products/seam/pages"
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
| xsi:schemaLocation="http://jboss.com/products/seam/pages http://jboss.com/products/seam/pages-2.0.xsd"
|
| no-conversation-view-id="/public/error/noConversation.xhtml"
| login-view-id="/public/login.xhtml">
|
| <page view-id="/restricted/*" login-required="true"/>
|
| <page view-id="*">
| <navigation>
| <rule if-outcome="account">
| <redirect view-id="/restricted/account.xhtml"/>
| </rule>
| </navigation>
| </page>
|
| ...
| <pages>
|
I have the following link in my xhtml page:
| <s:link action="account" value="View my account" />
|
When I click on the link, I see the login page as expected. But then after I login, the login page is reloaded instead of being redirected to the account page.
I checked that the authenticate method was returning true, so the login works fine. It is just that I'm not redirected as expected after login in.
Do I do anything wrong here?
thanks,
Richard
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079239#4079239
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079239
More information about the jboss-user
mailing list