[JBoss jBPM] - Re: DB Error deploying the Sample BPEL process
by KVAK_TNT
Hi there!
I got the same Ant error:
BUILD FAILED
C:\EWorkspace\bpel-test\jbpm.bpel\doc\examples\process.template.xml:240: Could not create task or type of type: junit.
Ant could not find the task or a class this task relies upon.
This is common and has a number of causes; the usual
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file:
- You have misspelt 'junit'.
Fix: check your spelling.
- The task needs an external JAR file to execute
and this is not found at the right place in the classpath.
Fix: check the documentation for dependencies.
Fix: declare the task.
- The task is an Ant optional task and the JAR file and/or libraries
implementing the functionality were not found at the time you
yourself built your installation of Ant from the Ant sources.
Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
task and make sure it contains more than merely a META-INF/MANIFEST.MF.
If all it contains is the manifest, then rebuild Ant with the needed
libraries present in ${ant.home}/lib/optional/ , or alternatively,
download a pre-built release version from apache.org
- The build file was written for a later version of Ant
Fix: upgrade to at least the latest release version of Ant
- The task is not an Ant core or optional task
and needs to be declared using .
- You are attempting to use a task defined using
or but have spelt wrong or not
defined it at the point of use
Remember that for JAR files to be visible to Ant tasks implemented
in ANT_HOME/lib, the files must be in the same directory or on the
classpath
Please neither file bug reports on this problem, nor email the
Ant mailing lists, until all of these causes have been explored,
as this is not an Ant bug.
Total time: 938 milliseconds
Does anyone know what the reason could be?
My config:
Eclipse 3.1.2
Original Hybernate Database
Helloworld.bpel - run-test
(\doc\examples\build.xml\ run-test by ant)
Thanks in advance!
Greetings Claus
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962862#3962862
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962862
19 years, 9 months
[JBoss jBPM] - async actions never starting
by cheath
Few months ago we upgraded to jbpm 3.1 to make use of asynchronous continuations. At the time, everything worked great. Then, at some point during our system test cycle, any node/action marked async never executed. Based on this thread:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=77656
I thought the culprit was we stopped deploying the jbpm webapp, because we were not really using it, and thought it was causing some other issues in our applications. I have since tried to redeploy the webapp, but the async actions are still not starting. We haven't changed versions of jbpm nor hibernate since the upgrade to 3.1, and I have racked my brain trying to track down what other configuration change happened, besides not deploying the web app. Any ideas?
Again, we are using JDK 1.5, jbpm 3.1. JBoss 4.0.2, and hibernate 3.1.3.
Here is the most recent version of the proc def I am using:
| <process-definition name="Entity Review">
| <start-state name="Start Entity Review">
| <transition name="tr1" to="Contract Review">
| <action name="action1" class="package.entityReview.MarkCounterpartyInReview" config-type="bean" async="true"></action>
| </transition>
| </start-state>
| <task-node name="Contract Review">
| ....
|
Also tried putting the action in another node after start, executed on the node-enter event. That actually prevents the process from getting to the Contract REview task. The above def will get to the Contract Review task, but the action never executes.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962855#3962855
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962855
19 years, 9 months