jbpm

Resolve Jboss data source configuration issue

牧云@^-^@ 提交于 2019-12-11 07:45:52
问题 After configuring the datasources in the jboss 5.0 AS , I deployed the jbpm web application . Im getting the the exception. java.lang.RuntimeException: mapped-name is required for simpleds of deployment webapple.war at org.jboss.web.tomcat.service.injection.WebResourceHandler.loadXmlResourceEnvRefs(WebResourceHand at org.jboss.web.tomcat.service.injection.WebResourceHandler.loadXml(WebResourceHandler.java:325) The web.xml configuration is <resource-env-ref> <resource-env-ref-name>simpleds<

Error in jbpm sample project using persistence and postgres

你离开我真会死。 提交于 2019-12-11 07:29:24
问题 I am trying to run a sample jbpm project in eclipse and I am using persistence.Whereas it gives an error on this line RuntimeManager runtimeManager = RuntimeManagerFactory.Factory.get().newSingletonRuntimeManager(environment) Error : (I have also attached the error screenshot ) Any sort of information would be really helpful. Caused by: org.postgresql.util.PSQLException: ERROR: null value in column "id" violates not-null constraint Detail: Failing row contains (null, null, null, 2017-05-21 19

Issue when running jbpm 6.1.0. with apache-tomcat-8.0.23 and java JRE 1.8.0_51

北战南征 提交于 2019-12-11 04:55:54
问题 Currently our application runs on jboss without any issues. Current Stack - jbpm 6.1.0.Final , jboss 7, jdk1.7.0_45 , oracle database We use jbpm api's to to manage the process state. We are in the process of upgrading our platform and want to use tomcat going forward. I am trying to port our existing application on the new stack Tomcat 8.0.23 , Oracle JRE 1.8.0_51 , jbpm 6.1.0.Final & oracle database Have followed the instructions listed in the below references . References: https://github

jBPM Maven dependencies not showing in pom.xml

大兔子大兔子 提交于 2019-12-11 04:33:31
问题 When I create a new jBPM project in Eclipse and select Create as Maven Project the pom.xml is generated without the dependency section. While I can manually add the dependencies, shouldn't the plugin do this automatically? Am I missing something? 回答1: Are you using 6.4.0.Final? There were issues with that version of the Eclipse wizard, that should be fixed in the following update site: http://downloads.jboss.org/jbpm/release/6.4.1.Final/updatesite/ 来源: https://stackoverflow.com/questions

What is advantage of using MVEL?

穿精又带淫゛_ 提交于 2019-12-11 04:02:30
问题 I'm learning jBPM engine, and what I have noticed is that it uses MVEL dialect by default in process design. So the question is: what is the advantage of using MVEL instead of pure Java? Will I have troubles with more complex processes if I'll start to program them in Java? 来源: https://stackoverflow.com/questions/13516616/what-is-advantage-of-using-mvel

Need to know Class of a Byte Array saved in MySQL Database

纵然是瞬间 提交于 2019-12-11 03:39:02
问题 I am stuck at strange issue. I have a jbpm5.3 web panel and what i am trying to do it to create web services in servlets by manipulating mysql database. i have done all the things but stuck in one byte array. this web panel uses a table workiteminfo in which it saves all the details and uses this byte array for further processing. My problem is that i do not have information about this byte array, but what i got to know is that this byte array is an object an unknown class. If i have this

JBPM 5 - Human Task “Recall”

假如想象 提交于 2019-12-11 02:19:32
问题 I have a business process requirement where a requestor should be able to "RECALL" the workflow-case he raised. The flow is like, Start ---> Requestor ----> Approver -----> Updater -----> End Requestor , Approver , Updater are human tasks. So after the Requestor task completed and goes to Approver task (and if it is not STARTED), the requestor should be able to "Recall" the process instance and flow should back to Requestor. I understand that a work-item for Approver "Human Task" will be

Complex Activiti + JPA queries

好久不见. 提交于 2019-12-10 14:19:17
问题 We are trying to use Activiti in a new project. I've created a setup which uses Hibernate through JPA for persisting entities involved in the process and JPA is interconnected with Activiti so we can use these entities as JPA variables. See: JPA chapter of Activiti's documentation I've found out that Activiti doesn't allow me to create queries on processes which involves JPA variables where i like to filter on the JPA entity fields. For example if i have processes with a variable referencing

jBPM 6.2 How to add an user that can execute all tasks?

非 Y 不嫁゛ 提交于 2019-12-10 11:55:29
问题 In jBPM 6.2, we can assign an user task to either an actor or a group such that they are the potential owners of these tasks. Is there an user that we can define in code or bpmn file so that he can execute all the user tasks regardless of the fact that the task is assigned to him or not? 回答1: Create a user with the username "Administrator", or use one of your existing users and add it to the group "Administrators". This gives the user(s) in question access to the task as BusinessAdministrator

JBPM persistence examples - resuming a workflow

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-10 10:09:07
问题 I am evaluating JBPM 5.4 with a PoC and am trying to realize the benefits of persistence that the engine does when a StatefulKnowledgeSession is created with an appropriate EMF. i.e a use case example of, say, a case when a workflow, while in its execution flow encounters a jvm shutdown. How is resuming from point of failure handled? Are there examples which clearly show this resume behavior - which API's to use etc.. Also, are there other jbpm project examples to get used to the tool and