Author: jochen
Date: Tue Aug 22 13:24:57 2006
New Revision: 433738
URL: http://svn.apache.org/viewvc?rev=433738&view=rev
Log:
Documentation fixes
Submitted-by: Jason McLaurin, [EMAIL PROTECTED]
Modified:
webservices/xmlrpc/trunk/pom.xml
webservices/xmlrpc/trunk/src/changes/changes.xml
webservices/xmlrpc/trunk/src/site/apt/client.apt
webservices/xmlrpc/trunk/src/site/apt/server.apt
Modified: webservices/xmlrpc/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/pom.xml?rev=433738&r1=433737&r2=433738&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/pom.xml (original)
+++ webservices/xmlrpc/trunk/pom.xml Tue Aug 22 13:24:57 2006
@@ -129,16 +129,20 @@
<email>[EMAIL PROTECTED]</email>
</contributor>
<contributor>
- <name>Jimisola Laursen</name>
- <email>[EMAIL PROTECTED]</email>
- </contributor>
- <contributor>
<name>Brad Karp</name>
<email>[EMAIL PROTECTED]</email>
</contributor>
<contributor>
+ <name>Jimisola Laursen</name>
+ <email>[EMAIL PROTECTED]</email>
+ </contributor>
+ <contributor>
<name>Marek Ludha</name>
<email>[EMAIL PROTECTED]</email>
+ </contributor>
+ <contributor>
+ <name>Jason McLaurin</name>
+ <email>[EMAIL PROTECTED]</email>
</contributor>
<contributor>
<name>Stanislav Miklik</name>
Modified: webservices/xmlrpc/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/src/changes/changes.xml?rev=433738&r1=433737&r2=433738&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/src/changes/changes.xml (original)
+++ webservices/xmlrpc/trunk/src/changes/changes.xml Tue Aug 22 13:24:57 2006
@@ -44,6 +44,10 @@
Fixed a bug in the web servers thread pool, which caused that
threads haven't been reused.
</action>
+ <action dev="jochen" type="fix" due-to="Jason McLaurin"
+ due-to-email="[EMAIL PROTECTED]">
+ Documentation improvements
+ </action>
</release>
<release version="3.0rc1" date="27-Jul-2006">
<action dev="jochen" type="fix" due-to="Alan Burlison"
Modified: webservices/xmlrpc/trunk/src/site/apt/client.apt
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/src/site/apt/client.apt?rev=433738&r1=433737&r2=433738&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/src/site/apt/client.apt (original)
+++ webservices/xmlrpc/trunk/src/site/apt/client.apt Tue Aug 22 13:24:57 2006
@@ -42,7 +42,7 @@
import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
- config.setServerUrl("http://127.0.0.1:8080/xmlrpc");
+ config.setServerURL(new URL("http://127.0.0.1:8080/xmlrpc"));
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
Object[] params = new Object[]{new Integer(33), new Integer(9)};
@@ -64,7 +64,7 @@
import org.apache.xmlrpc.client.XmlRpcCommonsTransportFactory;
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
- config.setServerUrl("http://127.0.0.1:8080/XmlRpcServlet");
+ config.setServerURL(new URL("http://127.0.0.1:8080/XmlRpcServlet"));
XmlRpcClient client = new XmlRpcClient();
client.setTransportFactory(new XmlRpcCommonsTransportFactory());
client.setConfig(config);
Modified: webservices/xmlrpc/trunk/src/site/apt/server.apt
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/src/site/apt/server.apt?rev=433738&r1=433737&r2=433738&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/src/site/apt/server.apt (original)
+++ webservices/xmlrpc/trunk/src/site/apt/server.apt Tue Aug 22 13:24:57 2006
@@ -214,7 +214,7 @@
* phm.addHandler(org.apache.xmlrpc.demo.proxy.Adder.class.getName(),
* org.apache.xmlrpc.demo.proxy.AdderImpl.class);
*/
- xmlRpcServer.setHandlerMapping(dhm);
+ xmlRpcServer.setHandlerMapping(phm);
XmlRpcServerConfigImpl serverConfig =
(XmlRpcServerConfigImpl) xmlRpcServer.getConfig();