[jboss-user] [JBoss jBPM] - jbpm4.1 task duedate does not persist

2009-08-06 Thread rujimethut

I have duedate attribute set in a task like this:

   
   
 
  
  


When process arrive Step1, task was created notification and reminder fired 
correctly but I check the table JBPM4_TASK the DUEDATE_ is null, 


Is this normal behavior? Is there any way I can get the task duedate through 
the api ?


Thanks




View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4248515#4248515

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4248515
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jbpm4.1 task duedate does not persist

2009-08-06 Thread rujimethut
sorry this is the xml:


  |task name=Step1 duedate=3 minutes 
  |notification/
  | reminder duedate=3 minutes/ 
  |   transition name=deny to=end/
  |   transition ame=approve to=Step2/
  |/task
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4248517#4248517

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4248517
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jbpm4.1 task duedate does not persist

2009-08-06 Thread rujimethut
I was working around and solve this problem by

1. get the task

2. query its reminder's Job 

3. get remider's duedate


Thanks for looking.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4248599#4248599

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4248599
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM 4 reminders

2009-07-28 Thread rujimethut
I have been using jbpm4.1-Snapshot which was built from the source, It is still 
a problem that the task reminder is using task-notification email template, I 
have to set the template attribute to point to the task-reminder template and I 
have to turn-off xml validation to get it works

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4246578#4246578

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4246578
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - forum search problem

2009-07-23 Thread rujimethut
When I try to do searching always got this error:

Cannot invoke the operation : the module threw an exception


this have been happening since last week.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4245173#4245173

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4245173
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM 4 : Can we get Task by using ProcessInstance?

2009-07-20 Thread rujimethut
Thank you for your quick response, shekharv.
Now I think I see the way to do it as your suggestion.

One more question. 

1.When the process start, Does it create/persist all task defined int the 
process definition or it create/persist only the current active tasks?


2.How does the jBPM keep orignal process definition? 
If It keep in database Is it possible to query and reconstruct?  

We just want to show user the simple process diagram like:
previous task - current task - next task

Thank you  appreciate your help



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4244066#4244066

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4244066
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM 4 : Can we get Task by using ProcessInstance?

2009-07-20 Thread rujimethut
Sorry those are 2 more question :)

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4244067#4244067

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4244067
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jBPM 4 : Can we get Task by using ProcessInstance?

2009-07-20 Thread rujimethut
I am very new in jBPM. and starting up one new project using jBPM 4.
We have problems understand its api uasge. help please.


Is there anyway to get  task instance by not using findPersonalTasks() or 
findGroupTasks()? 

We keep processInstanceId in our business model object. Can we use it to 
retrieve these values:

1. all active Tasks which belong to this processInstance 

2.Process Definition which contains activity and Task definition


I did search in the api and it is very limit to get these kind of information.


Thank you.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4244020#4244020

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4244020
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: jBPM 4 : Can we get Task by using ProcessInstance?

2009-07-20 Thread rujimethut
Or we have to keep taskId in our business model as well? if so how to get this 
taskId and assign it to our model?

We want to do something like

1. create new model
2. start process
3. assign processInstance and active taskIds to model.

4.when user view/edit the business model we display process information(eg. 
history completed task, current task, future task) which belong to that process 
instance,  and also offer button to take/complete the current Task (of course 
if that user is one of that task's candidates)

Is it possible to to this in jBPM 4?
 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4244028#4244028

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4244028
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - How to get history variables and processInstanceId from Hist

2009-07-15 Thread rujimethut
I am very new in jBPM, Can anybody teach me how to get history variables and 
processInstanceId from the HistoryTask?

In the implementation classes such as HistoryTaskImpl it contains fields of 
variableName and its value and the processInstanceId field, but it seems not 
provide any public api to access those fields. 


Wattanapol.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4243637#4243637

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4243637
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How to get history variables and processInstanceId from

2009-07-15 Thread rujimethut
Thank you jbrrez, I will be looking forward for this feature.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4243817#4243817

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4243817
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user