Navigation is failing in 1.7 RC1
[Logo]
ICEsoft.org Forums: ICEfaces, ICEmobile, ICEpdf
[Search] Search   [Recent Topics] Recent Topics   [Groups] Home Page | www.icefaces.org  [Register] Register  [Login] Login 
Navigation is failing in 1.7 RC1  XML
Forum Index -> Development Build Feedback
Author Message
ycindepalle

Joined: 27/08/2007 00:00:00
Messages: 28
Offline


Hello

We upgraded icefaces from 1.7 beta1 to 1.7 RC1.

The login navigation is not working. Once the login is successful we are navigating to the home page. Well this was working fine in 1.7 Beta1. Any help is greatly appreciated. I dont see any error in the log file also. The login screen is displayed again without any password once the login is successful.

here is the login info from faces-config.xml

<navigation-rule>
<from-view-id>/jsp/login.jspx</from-view-id>
<navigation-case>
<from-action>#{UserBean.loginAction}</from-action>
<from-outcome>Login</from-outcome>
<to-view-id>/jsp/home.jspx</to-view-id>
</navigation-case>
<navigation-case>
<from-action>#{UserBean.loginAction}</from-action>
<from-outcome>Fail</from-outcome>
<to-view-id>/jsp/login.jspx</to-view-id>
</navigation-case>
<navigation-case>
<from-action>#{UserBean.resetAction}</from-action>
<from-outcome>Success</from-outcome>
<to-view-id>/jsp/login.jspx</to-view-id>
</navigation-case>
</navigation-rule>

================

regards
Yugandhar
Baleyba

Joined: 16/11/2006 00:00:00
Messages: 110
Offline


Hi,

I get navigation problems too after upgrading.
I need to refresh navigator page, for making some redirections working.


Regards,
Bal.

JBoss 4.2.3 | Java 1.6.0_16 | IceFaces 1.8.2
mark.collette


Joined: 07/02/2005 00:00:00
Messages: 1556
Offline


Please be sure you have the javax.faces.DEFAULT_SUFFIX context-param set in your web.xml file. For most JSP configurations, it would be set to ".jspx", and for most Facelets configurations, it would be set to ".xhtml". Eg:

Code:
<context-param>
     <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
     <param-value>.jspx</param-value>
 </context-param>
 
[Email]
ycindepalle

Joined: 27/08/2007 00:00:00
Messages: 28
Offline


Mark,

thanks very much for the info. Well is this a change from 1.7 beta1 to 1.7 RC1.

May be I missed this but is this mentioned in the document somewhere. My developers are complaining that simple update of the jars from 1.7 Beta1 to 1.7 RC1 seems to be breaking the current functionality.


thanks for your help
regards
Yugandhar
 
Forum Index -> Development Build Feedback
Go to:   
Powered by JForum 2.1.7ice © JForum Team