Description
On the site: http://ws.apache.org/xmlrpc/advanced.html
is the fault line:
config.setServerUrl("http://127.0.0.1:8080/xmlrpc");
must repleace to:
config.setServerURL(new URL("http://127.0.0.1:8080/xmlrpc"));
-> Url to upper case: URL
-> arg is not a string, but a URL-object