I need help with expired / nonexistent conversation when ?cid=XX is in the url. I tried to put
<error-page> <exception-type>org.jboss.weld.context.ContextNotActiveException</exception-type> <location>/faces/index.xhtml</location> </error-page> <error-page> <exception-type>org.jboss.weld.context.NonexistentConversationException</exception-type> <location>/faces/index.xhtml</location> </error-page>
However, this did not work. I am still getting an error and cannot switch to index.xhtml . How can I solve this problem?
source share