clientConfig.setConnectionTimeout( connectionInfo.getTimeout() );
clientConfig.setTimeZone( connectionInfo.getTimeZone() );
}
final XmlRpcClient client = new XmlRpcClient();
client.setTypeFactory( new BinderTypeFactory( client ) );
XmlRpcCommonsTransportFactory factory = new XmlRpcCommonsTransportFactory( client );
// Alternative - use simple connection manager, but make sure it closes the connection each time
// This would be set here since it would not be thread-safe
// factory.setHttpClient( new HttpClient( new SimpleHttpConnectionManager( true ) ) );
factory.setHttpClient( httpClient );