[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-13 Thread mikeodell77
Thanks for the replies. That is exactly what I have done. I have a page that displays the information I was looking for. I just wanted to make sure I hadn't missed anything before I did that. Thanks for the replies. If I get the time to properly extend jBPM to do this I will certainly

[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-12 Thread [EMAIL PROTECTED]
You could easily write an administration console that makes a SQL call to the DB and returns all of this data, is that much harder then using an API from jBPM? Why afraid that would be the answer? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3929584#3929584

[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-11 Thread kukeltje
may I ask why you 'were afraid that was going to be the answer'? These things are not obvious, think about systems where there are thousands of open tasks. Retrieving all in one go can put an unnecessary load on a system. So some kind of paging db side/ui side etc is needed. Extending the

[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-10 Thread fallow
Mike, we have solved a number of these types of problems by creating our own SQL call and returning the data. You can easily get this list through direct SQL or HSQL. Something like the following I think gets you what you need. select * from JBPM_TASKINSTANCE where end_ is not null Eric

[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-10 Thread mikeodell77
That is what I was affraid the answer was going to be. Thanks for the reply. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3929440#3929440 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3929440

[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-10 Thread mikeodell77
Although, after thinking about it more... surely there is a way to get persisted instances from the database through the JBPM API. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3929442#3929442 Reply to the post :