I have a similar setup, doing
|
|
did the trick for me,
but i am not really happy with that, as far as I understand this doesn't reuse
any already opened session from my application
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4270332#4270332
Reply t
| org.hibernate.MappingException: Unknown entity:
org.jbpm.pvm.internal.id.PropertyImpl
|
looks like your hibernate mapping is wrong, as far as I know there is a new
table introduced in 4.2, the mapping is in "jbpm.repository.hbm.xml"
|
|
|
|
|
|
|
|
which is exa
Hi msahai,
I think you are missing
|
|
in your jbpm.cfg.xml
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4264568#4264568
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4264568
I patched jbpm.history.hbm.xml and use the "_DET_" ones, the fix for this has
been postponed to jBPM 4.3 see:
https://jira.jboss.org/jira/browse/JBPM-2477?focusedCommentId=12482983
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4261041#4261041
Reply to the p
to me this looks like a configuration issue in your jbpm-config file, check
your transaction-context tag , for me the following setup works:
|
|
|
|
|
|
|
|
|
|
but maybe you want to set:
|
|
or maybe you forgot the
|
I have the following setup in my jbpm.cfg.xml file, inside the
process-engine-context:
|
|
|
|
|
|
but I don't really remember where this is documented
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4261037#4261037
Hi mmusaji,
if my understanding of the job scheduler is correct, the execution time for
your unit test is 11 sec?
Maybe you should use threads like so (not tested):
| List jobs = managementService.createJobQuery()
| .processInstanceId(processInstanceId)
|
I try to implement "Pattern 15" in jbpm4
http://www.workflowpatterns.com/patterns/control/multiple_instance/wcp15.php
"Multiple Instances without a priori Run-Time Knowledge"
try 1)
I use a custom implementation of ExternalActivityBehaviour, that basically just
waits for signals to spawn off dyna
lol, hey I don't use "older drivers", just the latest and greatest, one of the
reasons why I try out jbpm4 ;-)
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249027#4249027
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply
hmm, I get a similar error for the indexes
| 23:35:13,342 ERROR [SchemaExport] Unsuccessful: create index
IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_)
| 23:35:13,342 ERROR [SchemaExport] ORA-01408: such column list already
indexed
|
| 23:35:13,348 ERROR [SchemaExport] Unsuccessful: cr
just my 2 cent:
maybe I am missing your point, but in step 2 when you create the string with
the actorId why don't you set the actorId directly on the swimlane and use the
swimlane for the task?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130214#4130214
R
the following code works for me:
| ProcessInstance processInstance = new ProcessInstance(processDefinition);
| TaskMgmtInstance taskManagement = processInstance.getTaskMgmtInstance();
| TaskInstance taskInstance = taskManagement.createStartTaskInstance();
|
but maybe there is a better way
Hey,
are you complaining about my post? ;-)
with 'somehow' I ment to use any of the following methods:
| ExecutionContext.setVariable(name, value)
| TaskInstance.setVariableLocally(name, value) // inherited from
VariableContainer
| ContextInstance.createVariable(key, object, ooken);
|
Hi,
most likely the scope of the script variables is destroyed after the script is
terminated, i guess you have to store the variables in the process instance
somehow and then access them in the execute() method of the action with
something like (not tested):
| public void execute(Execution
This can be done with a hibernate query, you can even add some ordering:
| DetachedCriteria taskCrit = DetachedCriteria.forClass(TaskInstance.class)
| .add(Restrictions.eq("actorId", actorId)
| .addOrder(Order.desc("start");
|
| List taskList =
taskCrit.getExecutableCriteria(jbpmCont
15 matches
Mail list logo