[Installation, Configuration & DEPLOYMENT] - Re: Expected release of JBossAS-5.0.0.GA?
by Achillix
I'd like to take the opportunity (in order to save some noise with yet another verison/upgrade related post) to post smth related:
Upgrade advise: 4.0.5 vs 4.2.2 vs 5.0.0
Hi,
we are about to upgrade to a new fresh hardware and we are considering upgrading to latest and greatest
jboss, postgresql as well.
Currently we are on 3.0.3 (for various reasons, mainly lack of time).
At some point back in 2006, i had come up with a plan for migration to (then) 4.0.4, and i had writen
instructions how to deal with eclipse, packaging, EJB configuration, and the test succeeded.
However we were unable to upgrade due to lack of testing time, and lack of a paralel test system.
Now we have the hw, + i have to do the upgrade.
So the questions are
a) which version should i turn to?
b) What are the changes between 4.0.4->4.2.2->5.0.0
I know its been 2 years under development, but what are the caveats someone should be aware of?
Thank you for any directions.
--
Achilleas Mantzios
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143919#4143919
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143919
18 years, 2 months
[JBoss jBPM] - Query certain processes for tasks
by twiceknightly
Hi,
I need to be able to get all of the open tasks, assigned to users whos id's are supplied in a list list, for a number of specified processInstances. Therefore I will pass in a list of user ids and a list of processInstances.
Does anyone know what the hibernate query for that will look like to do that? I'm not really familiar with hibernate. I did put the following query together, in my version of the hibernate.queries.hbm.xml file, to get all open tasks for a list of users. I just need to be able to do it for a number of processInstances. Can I do this in a single query?
thanks in advance.
| <query name="TaskMgmtSession.findOpenTasksOfProcessInstanceByActorIds">
| <![CDATA[
| select ti
| from org.jbpm.taskmgmt.exe.TaskInstance as ti
| where ti.actorId in ( :actorIds )
| and ti.isSuspended != true
| and ti.isOpen = true
| and ti.token.processInstance = :processInstance
| ]]>
| </query>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143906#4143906
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143906
18 years, 2 months