Hello,
I have this process:
|
|
| ..
|
|
|
|
|
|
|
|
|
TimerAction is:
| public void execute(ExecutionContext context
sorry, just fix the problem.
tnx.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4259543#4259543
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4259543
___
jboss-user mailing l
Hello,
I just recently updated from jbpm 3.2.x to 3.3.1.GA. Now when i try to copy
paste the hibernate.cfg.mysql.xml to my own hibernate config i get this error:
13:55:58,687 ERROR - SchemaExport - Unsuccessful: create table
JBPM_ACTION (ID_ bigint generated by default as identity
Hello,
Thanks for the reply.I just forgot to put the package of jbpm to transactional
context. Thanks for the reply.
cheers.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4259509#4259509
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=post
when i start the process i encountered that exception.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4259273#4259273
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4259273
___
Hello,
Im getting that problem in jbpm 3.2.5:
Caused by: org.hibernate.HibernateException: null index column for collection:
org.jbpm.graph.def.ProcessDefinition.definitions
at
org.hibernate.persister.collection.AbstractCollectionPersister.readIndex(AbstractCollectionPersister.java:732)
Thank you. i already found the update site for jboss tools.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4253735#4253735
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4253735
___
when i open the process editor it throws an error...i think there is a
compatibility issue.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4253573#4253573
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4253573
_
Hello,
I just wondering where i can find the update site of process designer for
eclipse plugin galileo? I've been googling but have no luck...it always gives
me the sourceforge link but i download it and install, it is broken.
Thanks a lot.
Cheers.
View the original post :
http://www.jboss.o
Hello,
Just wanted to share how I accomplished this query. although it is not, let say
hibernate way or jbpm way, but it work.
|
| @SuppressWarnings("unchecked")
| public List findNextTasksByProcessInstance(final ProcessInstance
process)
| {
| try {
|
Hello,
Sorry, just wanted to have the list of all possible task.
Thanks a lot.
Cheers.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4251347#4251347
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4251347
__
Hello,
I have to display the next possible task aside from the current task in the
task instance.
here is the scenario:
I have a process definition compose of 5 task: A, B, C, D, E
Now, I started the process then the current task is A and it is in taskinstance
table. Now when the user process
Hello,
using v 3.2.x
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249891#4249891
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249891
___
jboss-user mailing list
jboss-use
Hello,
I also already try that one but no luck. :)
Thanks.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249871#4249871
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4249871
__
Hello,
I change my expression to:
|
|
|
|
|
|
| final Map param = new HashMap();
| param.put("collateral", new Integer(1));
|
|
and it work fine. Now I am just confused that i cannot use string comparisson
in expression? please adv
Hello,
I have this expression on my task:
|
|
|
|
|
|
|
| final Map param = new HashMap();
| final String collavalue = "true";
| param.put("collateral", collavalue);
|
my problem is the expression always falls to 'false' transition. Ho
hello,
I can get TaskInstances using this code:
| final Collection tasks =
context.getTaskMgmtInstance().getTaskInstances();
|
the above code retrieves all taskInstance in a process (it's obvious) when I
use a handler. Now my question is How can i get the the specific task for which
a ti
Hello,
I have this very complicated requirements regarding workflow. here is the
scenario:
Verify Task - assign two person: verifierOne, verifierTwo
Approve Task - assign two person: approverOne, approverTwo
The Verify Task will not end unless that the two person assigned end the task.
When ve
please see this jbpm user guide:
http://docs.jboss.org/jbpm/v3/userguide/persistence.html
I think you hibernate.cfg.xml is a combination of your application domain model
and jbpm model. And put your config in sessionFactory. I suppose there is no
way not to spring-nify your jbpm engine.
And
that's my notion of timer when attached to a 'task-node' that it will end the
task node and route to the intended 'timeout transition'...i think this
possible only if not using db persistence? please advise? thanks.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopi
Hello,
I get the TaskInstance in ActionHandler like this:
| final Collection tasks =
context.getTaskMgmtInstance().getTaskInstances();
|
| for(TaskInstance inst : tasks){
| inst.end();
| }
|
also i try this
| final Collection tasks =
conte
Hello,
That works thanks. Now my question is, How to end task in Timers? Like the
example above code i get the TaskInstance so that i can end that task when
leaving for the next task during timeout.
| final Collection tasks =
context.getTaskMgmtInstance().getTaskInstances();
|
| for(Ta
btw, im using db persistence
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234921#4234921
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4234921
___
jboss-user mailing list
j
Hello,
How can i get TaskInstance in a executioncontext..here is the scenario:
| ..
|
|
|
|
|
|
|
|
|
|
and here the WorkflowTimer code:
| public class
Hello,
I have this particular feature that my boss want that the task can be re-assign
to other user. Is this possible? How?
Thanks a lot.
Cheers.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234311#4234311
Reply to the post :
http://www.jboss.org/index.
Sorry, my bad. btw, what if im working with traditional jBPM and what could be
the configuration.
Thanks a lot.
Cheers.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234257#4234257
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mo
I uncomment that line but i did not seem to work. I think that will be use if
you not integrate jbpm in an application (that's my guess).
I try to put the WfEngine in spring-transaction of application and it work as
expected.
View the original post :
http://www.jboss.org/index.html?module=bb&
Hello,
I might be stupid to ask question like this but i should. How to add comment in
a particular task. So for example I have a textarea that a user can put a
comment on particular task, how i can save & retrieve that comments in jbpm way?
Thanks a lot.
Cheers.
View the original post :
http
As promised here is my jbpm.cfg.xml
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Yah, It doesn't seems right.
I guess you are talking of jbpm.cfg.xml, right? Unfortuantely, It is in my
office pc, gonna post tomorrow asap.
Thanks a lot.
Cheers.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233929#4233929
Reply to the post :
http://www.
Hello,
I end my task like this:
wfEngine.signal(wfTask.path.id, null);
wfEngine.endTask(taskInstanceId, null);
but i already solve my problem. What happened is this:
anonymous wrote : 7.7. Combining your hibernate classes
|
| In your project, you might use hibernate for your persistence. C
Hello,
I've stuck with this for more than a week. here is my process def:
|
|
|
| a test for fork/join workflow
|
|
|
|
|
|
|
|
|
|
|
|
|
Hello Glen,
I have the same problem.I post here my problem:
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=155199
Hope you can give some ideas. Thanks a lot. Cheers.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233250#4233250
Reply to the post
Ok. i do not put a controller class because i use WfEngine for that. Here is
some wfengine works:
|
| final String taskInstanceId = BPMEngineRegistry.getLocalId(wfTask.id);
|
|
|
| wfEngine.signal(wfTask.path.id, null);
| wfEngine.endTask(taskInstanceId, null);
|
Hi,
I have same problem. here is my process definition:
|
|
|
| a test for fork/join workflow
|
|
|
|
|
|
|
|
|
|
|
|
|
Hello,
Im trying to login in http://localhost:8181/jbpm-console/app/processes.jsf to
administer/test my deployed processdefination but when i try to enter the
username/password specified error occured. i already inspect the web.xml but
there nothing much to say about users.
Thanks a lot.
Cheer
36 matches
Mail list logo