Re: Remote JNDI look up to ConnectionFactories is failing

2016-07-05 Thread Romain Manni-Bucau
1. that's the way 2. no for the mentionned reasons. The way to solve it would likely be to write a remote EJB acting as a proxy and getting injected the factory and queue or equivalent. Romain Manni-Bucau @rmannibucau | Blog

Re: Remote JNDI look up to ConnectionFactories is failing

2016-07-05 Thread Dignesh
Thank you Romain. 1.I am using ejbd:// for JNDI look up to ejb's - The ejb's are deployed in tomee. I have activated it by adding openejb.service.manager.class = org.apache.openejb.server.SimpleServiceManager in system.properties file - No issues with this configuration. Please let me know I am

Re: TomEE Server not getting started

2016-07-05 Thread Romain Manni-Bucau
Then that's another jar. if you have bash you can run: user@machine $ for i in lib/*.jar; do if [ "$(jar tf $i | grep MANIFEST.MF)" == "" ]; then echo $i; fi done Romain Manni-Bucau @rmannibucau | Blog | Old Wordpress Blo

Re: Remote JNDI look up to ConnectionFactories is failing

2016-07-05 Thread Romain Manni-Bucau
Hello several things: - ejbd:// is only used if you set it up in tomee, default is deactivated - default ejbd transport for tomee is http (http://xxx/tomee/ejb) but it needs to be activated too, see tomee.remote.support on http://tomee.apache.org/properties-listing.html - connection factories

Re: TomEE Server not getting started

2016-07-05 Thread Dignesh
it does contain META-INF/MANIFEST.MF in jar. -- View this message in context: http://tomee-openejb.979440.n4.nabble.com/TomEE-Server-not-getting-started-tp4679116p4679229.html Sent from the TomEE Dev mailing list archive at Nabble.com.

Remote JNDI look up to ConnectionFactories is failing

2016-07-05 Thread Dignesh
Hi , I am using 7.0.1 version of TomEE. I am doing remote jndi look up to connection factory from my local client program.I am not sure is there something which I am missing. Can anyone please help me out in finding what is the issue here. I have attached my client program for reference. clientPro

Re: TomEE Server not getting started

2016-07-05 Thread Romain Manni-Bucau
so ojdbc jar doesn't have a META-INF/MANIFEST.MF which can likely be the case. try adding ojdbc in conf/exclusions.list (don't forget to add "default-list" in the file as well if it doesn't exist) Romain Manni-Bucau @rmannibucau | Blog

Re: TomEE Server not getting started

2016-07-05 Thread Dignesh
Hi Romain , Moving to latest version 7.0.1 of TomEE plus has resolved the issue. But one thing I noticed is, the issue is observed when I use Oracle as Database.The issue is not seen when I use sqlserver and PostGres as database. -- View this message in context: http://tomee-openejb.979440.n4

Re: Minimal components in TomEE Embedded Server

2016-07-05 Thread Romain Manni-Bucau
2016-07-05 14:13 GMT+02:00 Sathwik : > Hi Romain, > > Thanks for the quick reply, > > We use Ruby & Rake for the builds, moved out of maven a very long time > ago. We have a docker image and use it to build on Jenkins. It works for > local builds as well. > > So, we will need to enhance the curren

Re: Minimal components in TomEE Embedded Server

2016-07-05 Thread Sathwik
Hi Romain, Thanks for the quick reply, We use Ruby & Rake for the builds, moved out of maven a very long time ago. We have a docker image and use it to build on Jenkins. It works for local builds as well. So, we will need to enhance the current ruby based build script to have an embedded ODE

Re: Minimal components in TomEE Embedded Server

2016-07-05 Thread Romain Manni-Bucau
Hello few questions before answering more specifically: can you use mvn to build this server - I know ODE has a pom but not sure if it is to make jenkins happy or if it is really used. If so tomee-maven-plugin allows to do what you do in your script more or less in a "standard" fashion, only trick

Minimal components in TomEE Embedded Server

2016-07-05 Thread Sathwik
Hi Devs, I am from the Apache ODE team. We are in the process of distributing production ready ODE as a standalone server, henceforth looking towards TomEE Embedded server. ODE has been in distribution till now as a web application. We have tried deploying ODE on a full blown Tomee Webprofile