Fault in the example
--------------------
Key: XMLRPC-136
URL: https://issues.apache.org/jira/browse/XMLRPC-136
Project: XML-RPC
Issue Type: Bug
Components: Website
Affects Versions: 3.0
Reporter: Mario Linke
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
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.