This message looks similar to the one that I have posted few mins ago. Sorry.
I am working on building a web application based on SEAM and ICEFACES under JBossAS.
This is what I am using:
JBossAS 4.0.5(with jboss-EJB-3.0_RC9_Patch_1)
Seam 1.1.0 GA
IceFaces 1.5.1(with facelets support)
The problem is that when I logout from the application, ICEFACES(??) shows me a popup with an error message thus blocking the redirect set up on the exceptions.xml file(seam configuration file for exception management)
Is there anybody who have faced the same problem?
Is it a bug or am I forgotting something in the configuration files(web.xml or components.xml)?
<!-- Code that preserves the Seam conversational state is executed by introspection in the ICEfaces framework
<filter>
<filter-name>Seam Redirect Filter</filter-name>
<filter-class>org.jboss.seam.servlet.SeamRedirectFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>Seam Redirect Filter</filter-name>
<url-pattern>*.jsf</url-pattern>
</filter-mapping>
-->
Another issue dealing with exception management:
when i try to intercept an exception via using the exceptions.xml from SEAM, IceFaces seems to "freeze" the redirect set on that file, thus refreshing the page.
Is there any setting I have to do or is it a IceFaces/Seam bug???