[jboss-user] [jBPM Users] - timer not signalling to right transition

2009-10-20 Thread freak182
Hello, I have this process: | task-node name=Investigate | task name=INV_LOAN | .. | /task | timer duedate=1 minute name=task_timer transition=End Application | | action

[jboss-user] [jBPM Users] - Weird schema generation in 3.3.1.GA version

2009-10-09 Thread freak182
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

[jboss-user] [jBPM Users] - Re: Weird schema generation in 3.3.1.GA version

2009-10-09 Thread freak182
sorry, just fix the problem. tnx. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4259543#4259543 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4259543 ___ jboss-user mailing list

[jboss-user] [jBPM Users] - Re: null index column for collection:

2009-10-08 Thread freak182
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=bbop=viewtopicp=4259509#4259509 Reply to the post :

[jboss-user] [jBPM Users] - null index column for collection:

2009-10-07 Thread freak182
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

[jboss-user] [jBPM Users] - Re: null index column for collection:

2009-10-07 Thread freak182
when i start the process i encountered that exception. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4259273#4259273 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4259273 ___

[jboss-user] [jBPM Users] - Re: [OT] - Update site for peocess designer

2009-09-05 Thread freak182
Thank you. i already found the update site for jboss tools. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4253735#4253735 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4253735 ___

[jboss-user] [jBPM Users] - Re: [OT] - Update site for peocess designer

2009-09-04 Thread freak182
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=bbop=viewtopicp=4253573#4253573 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4253573

[jboss-user] [jBPM Users] - [OT] - Update site for peocess designer

2009-09-03 Thread freak182
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 :

[jboss-user] [jBPM Users] - Re: Query on remaining task

2009-08-26 Thread freak182
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 ListTask findNextTasksByProcessInstance(final ProcessInstance process) | { | try { |

[jboss-user] [jBPM Users] - Query on remaining task

2009-08-24 Thread freak182
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

[jboss-user] [jBPM Users] - Re: Query on remaining task

2009-08-24 Thread freak182
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=bbop=viewtopicp=4251347#4251347 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4251347

[jboss-user] [JBoss jBPM] - Re: expression question

2009-08-17 Thread freak182
Hello, I also already try that one but no luck. :) Thanks. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4249871#4249871 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4249871

[jboss-user] [JBoss jBPM] - Re: expression question

2009-08-17 Thread freak182
Hello, using v 3.2.x View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4249891#4249891 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4249891 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: expression question

2009-08-16 Thread freak182
Hello, I change my expression to: | |decision name=Collateral expression='#{ collateral 0 }' | transition to=fork1 name=true/transition | transition to=NO_COLLATERAL name=false/transition | /decision | | final MapString, Serializable param =

[jboss-user] [JBoss jBPM] - expression question

2009-08-15 Thread freak182
Hello, I have this expression on my task: | | decision name=Collateral expression='#{ collateral == true }' | transition to=fork1 name=true/transition | transition to=NO_COLLATERAL name=false/transition | /decision | | | final MapString,

[jboss-user] [JBoss jBPM] - Re: How to end TaskInstance in a ActionHandler

2009-06-25 Thread freak182
hello, I can get TaskInstances using this code: | final CollectionTaskInstance 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

[jboss-user] [JBoss jBPM] - How to not end task while there is still users to verify or

2009-06-08 Thread freak182
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

[jboss-user] [JBoss jBPM] - Re: JBPM sharing DB connection with Spring

2009-06-06 Thread freak182
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

[jboss-user] [JBoss jBPM] - Re: How to end TaskInstance in a ActionHandler

2009-06-05 Thread freak182
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 :

[jboss-user] [JBoss jBPM] - How to end TaskInstance in a ActionHandler

2009-06-04 Thread freak182
Hello, I get the TaskInstance in ActionHandler like this: | final CollectionTaskInstance tasks = context.getTaskMgmtInstance().getTaskInstances(); | | for(TaskInstance inst : tasks){ | inst.end(); | } | also i try this | final

[jboss-user] [JBoss jBPM] - How to get TaskInstance in a ActionHandler

2009-06-03 Thread freak182
Hello, How can i get TaskInstance in a executioncontext..here is the scenario: | .. | | task-node name=approver A | | timer duedate=1 minute name=timertest transition=to approver B | action

[jboss-user] [JBoss jBPM] - Re: How to get TaskInstance in a ActionHandler

2009-06-03 Thread freak182
btw, im using db persistence View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4234921#4234921 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4234921 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: How to get TaskInstance in a ActionHandler

2009-06-03 Thread freak182
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 CollectionTaskInstance tasks = context.getTaskMgmtInstance().getTaskInstances();

[jboss-user] [JBoss jBPM] - How to re-assign task to other/s actor

2009-05-31 Thread freak182
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=bbop=viewtopicp=4234311#4234311 Reply to the post :

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

2009-05-30 Thread freak182
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=bbop=viewtopicp=4234257#4234257 Reply to the post :

[jboss-user] [JBoss jBPM] - How to add comments

2009-05-29 Thread freak182
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 :

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

2009-05-29 Thread freak182
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 :

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

2009-05-28 Thread freak182
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.

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

2009-05-28 Thread freak182
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=bbop=viewtopicp=4233929#4233929 Reply to the post :

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

2009-05-28 Thread freak182
As promised here is my jbpm.cfg.xml | jbpm-configuration | | !-- | This configuration is used when there is no jbpm.cfg.xml file found in the | root of the classpath. It is a very basic configuration without persistence | and message services. Only the

[jboss-user] [JBoss jBPM] - Fork/Join Problem

2009-05-27 Thread freak182
Hello, I've stuck with this for more than a week. here is my process def: | ?xml version=1.0 encoding=UTF-8? | process-definition xmlns= name=forktest | description | a test for fork/join workflow | /description | start-state name=Start |

[jboss-user] [JBoss jBPM] - Re: Workflow with nested fork gets stuck when tasks are comp

2009-05-26 Thread freak182
Hello Glen, I have the same problem.I post here my problem: http://www.jboss.org/index.html?module=bbop=viewtopict=155199 Hope you can give some ideas. Thanks a lot. Cheers. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4233250#4233250 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-21 Thread freak182
Hi, I have same problem. here is my process definition: | ?xml version=1.0 encoding=UTF-8? | process-definition xmlns= name=forktest | description | a test for fork/join workflow | /description | start-state name=Start | transition

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-21 Thread freak182
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); |

[jboss-user] [JBoss jBPM] - Cannot login in jbpm-cosole administration

2009-05-03 Thread freak182
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.