XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
String serverURL = getPasteBinServerURL() + "/xmlrpc/";
try {
config.setServerURL(new URL(serverURL));
} catch (MalformedURLException e) {
throw new InvalidServerURL("Invalid ServerURL [" + serverURL + "]", e);
}
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
client.setTypeFactory(new TypeFactoryImpl(client));