if you check you have not set openejb.nobanner system property you should see lines like:
"** Starting Services **" in System.out (we doesn't use a logger for this purpose). and "Ready!" if you don't see it, it is because no service are found which is possible since we are looking for service files (META-INF/org.apache.openejb.server.ServerService). we are currently doing it with: org.apache.openejb.server.SimpleServiceManager which uses current thread loader. we can write another service manager and use it setting the property service manage through: org.apache.openejb.server.ServiceManager#setServiceManager FYI in TomEE we start manually cxf services by default so such a feature is possible in OSGi too. something like a custom activator starting/closing org.apache.openejb.server.ejbd.EjbServer (init(), start() method + stop() method). - Romain 2011/12/5 Charles Moulliard <[email protected]> > I have turned out the openejb-server and openejb-ejbd jars in bundles and > deploy them but the error is still there. Surprisingly I don't see when the > server starts a trace in the log like we have when running openejb in > standalone mode. Of course, no error is reported in the log. > > -- > View this message in context: > http://openejb.979440.n4.nabble.com/Missing-piece-with-openejb-on-Apache-karaf-tp4160552p4160766.html > Sent from the OpenEJB Dev mailing list archive at Nabble.com. >
