return client;
}
}
private CommunicationChannelClientFactory getCommunicationChannelFactory() {
XmlRpcCommunicationChannelClientFactory factory = new XmlRpcCommunicationChannelClientFactory();
factory.setServerUrl(getUrl());
factory.setChunkSize(getChunkSize());
factory.setRequestTimeout(getRequestTimeout());
factory.setConnectionTimeout(getConnectionTimeout());
return factory;
}