Hi all! I have the following code in my pages.xml

  | <page view-id="/pages/project/edit.xhtml">
  |         <navigation from-action="#{projectAction.createProject}">
  |             <redirect view-id="/pages/project/details.xhtml" />
  |         </navigation>
  |         <navigation from-action="#{projectAction.updateProject}">
  |             <redirect view-id="/pages/project/details.xhtml" />
  |         </navigation>
  |         
  |     ....
  | </page>
  | 

But before i made a copy-paste mistake and the code was:


  | <page view-id="/pages/project/edit.xhtml">
  |         <navigation from-action="#{projectAction.createProject}">
  |             <redirect view-id="/pages/project/details.xhtml" />
  |         </navigation>
  |         <navigation from-action="#{projectAction.createProject}">
  |             <redirect view-id="/pages/project/details.xhtml" />
  |         </navigation>
  |         
  |     ....
  | </page>
  | 

The createProject from-action was repeated twice, but seam throws an exception: 
java.lang.IllegalStateException: No active conversation context
This message is not telling much to me.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4064830#4064830

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4064830
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to