Re: Embedding ODE

2010-05-27 Thread Meeraj Kunnumpurath
scheduler and hibernate DDL should be > generated for each of the supported database vendors. > > Regards, > > Aaron > > > > > > From: Meeraj Kunnumpurath > To: dev@ode.apache.org > Sent: Thu, May 27, 2010 7:32:29 AM > Subjec

Re: Embedding ODE

2010-05-27 Thread Aaron Anderson
should be generated for each of the supported database vendors. Regards, Aaron From: Meeraj Kunnumpurath To: dev@ode.apache.org Sent: Thu, May 27, 2010 7:32:29 AM Subject: Re: Embedding ODE I think it is because I didn't start the scheduler. However, when

Re: Embedding ODE

2010-05-27 Thread Meeraj Kunnumpurath
t; > > >SimpleScheduler scheduler = new SimpleScheduler(new >> > > > GUID().toString(), new JdbcDelegate(basicDataSource), odeProperties >> ); >> > > > >> scheduler.setExecutorService(Executors.newCachedThreadPool()); >> > > >

Re: Embedding ODE

2010-05-27 Thread Meeraj Kunnumpurath
roperties > ); > > > >scheduler.setExecutorService(Executors.newCachedThreadPool()); > > > >scheduler.setTransactionManager(transactionManager); > > > > > > > > BpelDAOConnectionFactoryImpl dcf = new > > > > BpelDAO

Re: Embedding ODE

2010-04-23 Thread Milinda Pathirage
lServer.setDaoConnectionFactory(dcf); > > >bpelServer.setScheduler(scheduler); > > >bpelServer.init(); > > > > > > Is this the right approach? > > > > > > Thanks > > > Meeraj > > > > > > On Thu, Apr 22

Re: Embedding ODE

2010-04-23 Thread Meeraj Kunnumpurath
;bpelServer.setDaoConnectionFactory(dcf); > >bpelServer.setScheduler(scheduler); > >bpelServer.init(); > > > > Is this the right approach? > > > > Thanks > > Meeraj > > > > On Thu, Apr 22, 2010 at 8:49 PM, Meeraj Kunnumpurath

Re: Embedding ODE

2010-04-22 Thread Milinda Pathirage
roach? > > Thanks > Meeraj > > On Thu, Apr 22, 2010 at 8:49 PM, Meeraj Kunnumpurath < > mkunnumpur...@googlemail.com> wrote: > > > Hi, > > > > I am looking at embedding ODE in an SCA container. The objective is to > > enable in-process two way invoc

Re: Embedding ODE

2010-04-22 Thread Meeraj Kunnumpurath
? Thanks Meeraj On Thu, Apr 22, 2010 at 8:49 PM, Meeraj Kunnumpurath < mkunnumpur...@googlemail.com> wrote: > Hi, > > I am looking at embedding ODE in an SCA container. The objective is to > enable in-process two way invocation between BPEL processes and other > component type

Embedding ODE

2010-04-22 Thread Meeraj Kunnumpurath
Hi, I am looking at embedding ODE in an SCA container. The objective is to enable in-process two way invocation between BPEL processes and other component types like POJO instances. Quickly looking through the source, I gather the starting point is BpelServerImpl. Could someone please tell what