You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2008/09/04 21:58:06 UTC

svn commit: r692215 - /continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt

Author: olamy
Date: Thu Sep  4 12:58:05 2008
New Revision: 692215

URL: http://svn.apache.org/viewvc?rev=692215&view=rev
Log:
[CONTINUUM-1869] Correct type of url variable in 'Connection to Continuum' section on 'Guide to use XML-RPC with Continuum' page
Submitted by Jonathan Ramsey


Modified:
    continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt

Modified: continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt?rev=692215&r1=692214&r2=692215&view=diff
==============================================================================
--- continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt (original)
+++ continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt Thu Sep  4 12:58:05 2008
@@ -42,7 +42,7 @@
     * password, the user's password
 
 +--------------------------+
-String url = "http://localhost:8080/continuum/xmlrpc";
+URL url = new URL( "http://localhost:8080/continuum/xmlrpc" );
 ContinuumXmlRpcClient client = new ContinuumXmlRpcClient( url, username, password );
 +--------------------------+