views:

240

answers:

1

I'm working with Icefaces 1.8.2 and have created a custom error page. When I get to my error page (a jspx page built using facelets), I can't get out. It won't navigate away from the page no matter what link or action I select. I think I have everything setup properly but I'm new to icefaces so I have been doublechecking my setup like crazy. Here's what I have setup:

In web.xml:

<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/jsp/error.jspx</location>
</error-page>   

faces-config.xml:

<managed-bean>
<description>Backing bean for Error handling</description>
<managed-bean-name>error</managed-bean-name>
<managed-bean-class>ErrorBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>

<navigation-rule>
<display-name>error</display-name>
<from-view-id>/jsp/error.jspx</from-view-id>
<navigation-case>
<from-outcome>home</from-outcome>
<to-view-id>/jsp/home.jspx</to-view-id>
</navigation-case>
</navigation-rule>
A: 

This may Help

http://www.icefaces.org/JForum/posts/list/6677.page

Feras