line 191 is a comment in Pageflow 1.0.0.CR3!!! I'd got a similar problem. The displaing exception isn't the root one. In my case, the cause was that the PageflowProcessDefinition wasn't define (=> NPE). So check if the pageflow is define : check in web.xml :
| <context-param> | <param-name>org.jboss.seam.core.jbpm.pageflowDefinitions</param-name> | <param-value> | mypageflow.jpdl.xml | </param-value> | </context-param> | check that the name use in @begin is the same as the one used in the name attribut's of root node <pageflow-definition name="mypageflow"> of the mypageflow.jpdl.xml check that mypageflow is accessible (eg: root of the ear) May it could help View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949706#3949706 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949706 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
