On Mar 15, 2013, at 8:35 AM, Olekg <[email protected]> wrote: > Hello, > > Could anybody clear me up what are keep-alives for in two way cxf (cxf > client, services deployed on cxf)? In case of calling some WebService, if it > ends, what entity would keep this connection context to be reused?
Basically just keeps a connection to the server open so that if another request needs to be sent to the server, it doesn't have to do the expensive operation of creating a new connection. Usually, the HttpURLConnection objects built into the JDK will manage the connection pooling for this to work. Not much we need to do. -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
