From commits-return-4264-apmail-continuum-commits-archive=continuum.apache.org@continuum.apache.org Thu Sep 04 19:58:59 2008 Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 7035 invoked from network); 4 Sep 2008 19:58:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Sep 2008 19:58:59 -0000 Received: (qmail 2879 invoked by uid 500); 4 Sep 2008 19:58:57 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 2862 invoked by uid 500); 4 Sep 2008 19:58:56 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 2853 invoked by uid 99); 4 Sep 2008 19:58:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Sep 2008 12:58:56 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Sep 2008 19:58:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E1E38238898F; Thu, 4 Sep 2008 12:58:06 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r692215 - /continuum/trunk/continuum-docs/src/site/apt/developer_guides/xmlrpc.apt Date: Thu, 04 Sep 2008 19:58:06 -0000 To: commits@continuum.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080904195806.E1E38238898F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 ); +--------------------------+