Thread safe caching of JAX-WS clientproxies
According to http://cxf.apache.org/faq.html#FAQ-AreJAX-WSclientproxiesthreadsafe? , clientproxies are not thread safe so I decided to create a Component which can pool the connections. I do it it by using Singleton design pattern. What is handled by this Singleton: This class creates the connections on the start and then caches them If the connection to the server is not available … Read more