Bharath Ganesh wrote:
Hi
I could see a Timer created at org.apache.cxf.ws.rm.RMManager using the default Timer constructor. This causes the associate timer thread to run as a non-daemon thread.
Since this timer is never cancelled, the thread to be there forever, stopping
the VM from exiting. (Matters a lot at the JAX-WS client side)
This needs to be fixed.
Thanks
-Bharath
http://www.bharathganesh.com
Hi Barath,
This timer is canceled - in the RMManager's @PreDestroy annotated
shutdown method, which is called when the the bus is shutdown. Do you
call Bus.shutdown() in your application?
Andrea.