}
// config.setEnabledForExtensions(true);
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
XmlRpcCommonsTransportFactory factory = new XmlRpcCommonsTransportFactory(client);
HttpClient httpClient = proxyService == null ? new HttpClient() : proxyService.getClientWithProxyConfig(BugzillaDefectTracker.class);
factory.setHttpClient(httpClient);
client.setTransportFactory(factory);
return client;
}