Re: Bind Datasource to specific jndi name

2008-09-16 Thread Andreas Karalus
Hi David, thank you for your hint, I tried this, but still got exception: In the code for intialisation of openejb: initialContext.bind(java:operativDS, new javax.naming.LinkRef(java:openejb/Resource/operativDS)); In the test Code: // this is ok DataSource operativDS = (DataSource)

Re: Active MQ 5.1 support

2008-09-16 Thread Jean-Louis MONTEIRO
Hi David, From my point of view, it's not possible to switch from 4.1.x to 5.1.x without any change in OpenEJB. In the current openejb-core module, the OpenEjbBrokerFactory implements BrokerFactory.BrokerFactoryHandler but in the ActiveMQ 5.1, this interface is no more an internal class. The new

Re: Active MQ 5.1 support

2008-09-16 Thread Jean-Louis MONTEIRO
As far as I can see, a refactoring has been done in ActiveMQ. That's why you have this exception. Regards, Jean-Louis rde8026 wrote: Hey David, I followed the instructions below and ran into the following exception: org.apache.openejb.OpenEJBException: OpenEJB has encountered a fatal

Re: Active MQ 5.1 support

2008-09-16 Thread rde8026
Thanks for all the thought guys! Let me know if/when you think you might be able to support both. It's not crucial but there are some features of 5.1.0 that I'd like to take advantage of if possible. BTW thanks for openEJB; its made my life a lot easier and works really well, IMHO. David

Re: Bind Datasource to specific jndi name

2008-09-16 Thread David Blevins
On Sep 16, 2008, at 3:42 AM, Andreas Karalus wrote: Hi David, thank you for your hint, I tried this, but still got exception: In the code for intialisation of openejb: initialContext.bind(java:operativDS, new javax.naming.LinkRef(java:openejb/Resource/operativDS)); In the test Code: //