On Thursday 03 March 2011 6:14:45 PM Kessel, Christopher wrote: > I'm reusing the same client across multiple threads. > > At startup I do something like this: > factory = new JaxWsProxyFactoryBean(); > client = (MyClient) factory.create(); > > Then I can have lots of threads concurrently making calls on that one > client: client.doMyThing(); > > I know the client is multithread safe, but I'm not sure how many internal > threads the client will use for communication. How many simultaneous > connections will CXF (or whatever underlying socket pool) maintain and how > do I change that value?
We really just use the HTTPUrlConnection object to connect to the Server. Thus, anything that you may find on google about that would apply to CXF as well. I honestly don't know the answer. :-( -- Daniel Kulp [email protected] http://dankulp.com/blog Talend - http://www.talend.com
