[jboss-user] [JBoss jBPM] - Re: Large

2007-10-09 Thread rgullett
And we are using the latest version of the GPD. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4093199#4093199 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4093199 ___ jboss-user

[jboss-user] [JBoss jBPM] - Large Root ProcessDefinition loads extremely slowly in Des

2007-10-08 Thread rgullett
In our current JBPM setup, we have one very large processdefinition and a lot of smaller ones. The complex one is located in the root directory (src/main/definitions/workflow). All other processdefinitions are located in some subfolder. When I open the complex one which is at the root, it

[jboss-user] [JBoss jBPM] - Re: Error introduced in 3.2.1

2007-07-16 Thread rgullett
Here's a junit test case and an ActionHandler that I wire in. It runs green in 3.2.GA, but fails in 3.2.1. Thanks, Randy package com.jbpm.test; import java.util.HashMap; import java.util.Map; import junit.framework.TestCase; import org.dom4j.Element; import

[jboss-user] [JBoss jBPM] - Re: Error introduced in 3.2.1

2007-07-16 Thread rgullett
Sorry about that. I think this one looks better. Note that the ActionHandler class goes in a separate file. package com.jbpm.test; | import java.util.HashMap; | import java.util.Map; | | import junit.framework.TestCase; | | import org.dom4j.Element; | import

[jboss-user] [JBoss jBPM] - Error introduced in 3.2.1

2007-07-13 Thread rgullett
I have a process definition has the following scenario: - node 1, performs an action which calls executionContext.leaveNode() when done. - This does a default transition to a ProcessState, which has several nodes in it. All of their action handlers perform similarly to node 1. - Upon