Re: How can I configure the external dataSource for ode?

2009-07-07 Thread Rafal Rusin
I think you should choose between tomcat war disto and servicemix jbi. Mixing those two may be confusing. 2009/7/2 yeyanchao.whu : > > I was confused. I tried many different ways to configure the servicemix and > ode with mysql, but it always doen't work. > My platform is tomcat6.0.18, serviceMix

[jira] Resolved: (ODE-632) Reduce db deadlocks by getting rid of delete statements that use index

2009-07-07 Thread Sean Ahn (JIRA)
[ https://issues.apache.org/jira/browse/ODE-632?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sean Ahn resolved ODE-632. -- Resolution: Fixed Most of the data clean up hql queries have been changed to collect ids for the objects. The DAO

Re: Is there any way how to get bpmn:id?

2009-07-07 Thread Alex Boisvert
Indeed... BpelManagementFactory is a proprietary class (not in Apache Ode) which hides the lookup of the ProcessManagement API remote interface. I didn't realize when I cut & pasted the code, sorry. The class is tied to other stuff (e.g. loading of configuration, etc.) so I can't share it easily

Re: Is there any way how to get bpmn:id?

2009-07-07 Thread Karel Gardas
Hi Alex, thanks a lot for your quick help. Unfortunately I do have quite problem to find BpelManagementFactory class. I've tried to find it in ode-trunk, in my ode-1.X source tree and also in ode-1.2 but it's nowhere. Could you be so kind and kick me into the right direction? Thanks, Karel Alex

[jira] Commented: (ODE-507) OutstandingRequestManager(ExecutionQueueImpl serialization) failed when ODE loaded in db mode

2009-07-07 Thread sijo cherian (JIRA)
[ https://issues.apache.org/jira/browse/ODE-507?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12728373#action_12728373 ] sijo cherian commented on ODE-507: -- I am getting same error with Oracle, without setting the

Re: No routes found for event handler

2009-07-07 Thread Bill McCusker
/fixed reply-to It looks like when the event handler calls org.apache.ode.dao.jpa.CorrelatorDAOImpl addRoute it is not being persisted. Putting an explicit call to EntityManager flush resulted in the query being able to find the route. However I have not been able to discern why the receive ac

Re: No routes found for event handler

2009-07-07 Thread Bill McCusker
It looks like when the event handler calls org.apache.ode.dao.jpa.CorrelatorDAOImpl addRoute it is not being persisted. Putting an explicit call to EntityManager flush resulted in the query being able to find the route. However I have not been able to discern why the receive activity's route is

Re: Is there any way how to get bpmn:id?

2009-07-07 Thread Alex Boisvert
Hi Karel, Here's a code fragment that does roughtly what you want: ProcessManagementConnection conn = BpelManagementFactory.getInstance().createConnection(); try { ActivityExtInfoListDocument s = conn.getExtensibilityElements(pid, aiid); TActivitytExtInfoLi

Is there any way how to get bpmn:id?

2009-07-07 Thread Karel Gardas
Hello, I'm trying to find out but so far unsuccessful hence the question: is there any way how to get bpmn:id which is assigned to some action directly in action's code? i.e. I do have following code: and I would like to get bpmn:id's value, i.e. "_KddAgBq8Ed6g-K1VcIMszw" somehow i