[jboss-user] [JBoss jBPM] - Re: The jbpm does not read my custom hibernate.cfg.xml

2008-09-19 Thread tellierj
try to use JbpmConfiguration configuration = JbpmConfiguration.getInstance(myJbpmConfiguration_xmlFilePath); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4177695#4177695 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss jBPM] - Re: Timer not firing - why ???

2008-02-14 Thread tellierj
make sure that the JobExecutorThread is started View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4129563#4129563 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129563 ___ jboss-u

[jboss-user] [JBoss jBPM] - bug with graphSession.findActiveNodesByProcessInstance ?

2008-02-11 Thread tellierj
I try to use this query but there's a problem with the condition token.parent is not null, because if the token is the root token the parent is null... I don't understand why this condition is in the query. I think a select DISTINCT node is also needed. | | | View the original

[jboss-user] [JBoss jBPM] - problem with cancel processInstance and delete Jobs

2008-02-11 Thread tellierj
I use JBPM 3.2.1 and the CancelProcessInstanceCommand, but it don't delete active jobs on the process instance. I tried to use JobSession.deleteJobsForProcessInstance but it call the default hibernate transaction and it's a problem because Hibernate is not the transaction manager in my project

[jboss-user] [JBoss jBPM] - Re: Feature Request - Task Properties

2007-10-10 Thread tellierj
Yes I need it too, and also for the process. Actually I use the description tag for process and task since version 3.2.1 like this : [key1=value1][key2=value2]... and I parse the description of GraphElement with a regular expression : \[(\w|[^w^=]*)=(\w|[^w^=]*)\] View the original post :

[jboss-user] [JBoss jBPM] - Re: Problem with the decision making node

2007-09-28 Thread tellierj
use a DecisionHandler and just return Yes or No View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089664#4089664 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4089664 ___ jboss-u

[jboss-user] [JBoss jBPM] - Re: Fork/Join JBPM 3.2.2

2007-09-28 Thread tellierj
at the end of the Fork.execute() , a new execution context is instanciate on the child token, which is use in your action handler. I think it's possible that's why you can't save the process instance, try to save your process instance in the start-state or before the fork. View the original pos

[jboss-user] [JBoss jBPM] - Re: Subprocess questions - and unexpected behaviour ?

2007-09-28 Thread tellierj
see ProcessState.leave() method, it currently automatically takes the default transition. http://jira.jboss.com/jira/browse/JBPM-1016 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4089595#4089595 Reply to the post : http://www.jboss.com/index.html?module=bb