Changed Logging behaviour

2010-03-18 Thread mschaefer
Moving from CXF 2.1.3 to 2.2.6 we noted some change in the logging behaviour. Specifically, we get INFO: Creating Service {http://www.destatis.de/schema/idb/webservices}... from class ... 18.03.2010 20:26:33 org.apache.cxf.service.factory.ReflectionServiceFactoryBean buildServiceFromClass (when

Re: Concurrency issue

2010-03-16 Thread mschaefer
Dan, It seems the culprit is a LinkedList that was unintentionally shared between threads. I made a copy of our project and stripped it down to the SessionService. The implementation class was a singleton (I guess for the sake of performance and because its operations are conceptually stateless)

Re: Concurrency issue

2010-03-15 Thread mschaefer
Dan, dkulp wrote: > > > Interesting. In the first case, the line in question is just: > getBus().getExtension(WSDLManager.class).getExtensionRegistry(); > > Removing optional jars resulted in no improvement. FYI here's the list of currently used jars: http://old.nabble.com/file/p27909103

Re: Concurrency issue

2010-03-15 Thread mschaefer
Dan, Sorry for the late reply. Please find attached the stack traces produced with today's SNAPSHOT: http://old.nabble.com/file/p27907080/cxf-concurrency-SNAPSHOT-20100315.txt cxf-concurrency-SNAPSHOT-20100315.txt Next thing I try here is remove optional jars which are still on the classpath.

Re: Concurrency issue

2010-03-14 Thread mschaefer
Dan, dkulp wrote: > > > Interesting. In the first case, the line in question is just: > getBus().getExtension(WSDLManager.class).getExtensionRegistry(); > > Thus, either the Bus is null (would be strange) or the WSDLMananger is > null, > which also be bizarre. If changed the code to spli

Re: Concurrency issue

2010-03-14 Thread mschaefer
Dan, Meanwhile, I've tested with 2.2.6 and 2.2.7-SNAPSHOT, neither made any difference. See http://old.nabble.com/file/p27895402/cxf-concurrency-issue.txt cxf-concurrency-issue.txt for stack traces produced by 2.2.7-SNAPSHOT, and a list of server side jars in WEB-INF/lib at the time of executio

Concurrency issue

2010-03-12 Thread mschaefer
Hi all, we're using CXF 2.1.9 and have a number of code first (annotated interfaces) developed web services and WS clients for communicating with our web app. The SessionService provides just login and logout methods. We use a unit test that creates some threads that simply log in and out one or m