Re: Having multiple versions of CXF deployed in the same OSGi container

2017-05-01 Thread Daniel Kulp
I can almost guarantee that having two versions of CXF deployed into the same OSGi container won’t work. The loading of the Bus extensions from the various bundles does not currently take into account the CXF version they are tied to. Dan > On Apr 27, 2017, at 9:46 AM, M. D.

Re: CXF v2.7.14 JAXB blocked threads and degraded performance

2017-05-01 Thread Daniel Kulp
This stack trace looks like it’s during creating a client proxy. Is that something you do a lot? If so, you really should either pool the proxies or use them in some other thread safe manner to avoid creating them all the time. Creating them is expensive and involves several locks.In

CXF v2.7.14 JAXB blocked threads and degraded performance

2017-05-01 Thread venkatesham nalla
degraded performance with CXF v2.7.14 with bunch of threads in BLOCKED state waiting to lock <0x000685890f28> (a com.sun.xml.bind.v2.runtime.reflect.opt.Injector) with the following stacktrace, teh thread that is holding the lock is in Runnable state. Is this a bug or how do get around