Return-Path: Delivered-To: apmail-maven-continuum-users-archive@www.apache.org Received: (qmail 32755 invoked from network); 30 Jan 2006 22:44:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 30 Jan 2006 22:44:35 -0000 Received: (qmail 56645 invoked by uid 500); 30 Jan 2006 22:44:35 -0000 Delivered-To: apmail-maven-continuum-users-archive@maven.apache.org Received: (qmail 56433 invoked by uid 500); 30 Jan 2006 22:44:34 -0000 Mailing-List: contact continuum-users-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-users@maven.apache.org Delivered-To: mailing list continuum-users@maven.apache.org Received: (qmail 56420 invoked by uid 99); 30 Jan 2006 22:44:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jan 2006 14:44:33 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of flamefew@gmail.com designates 64.233.162.207 as permitted sender) Received: from [64.233.162.207] (HELO zproxy.gmail.com) (64.233.162.207) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jan 2006 14:44:33 -0800 Received: by zproxy.gmail.com with SMTP id x7so1216974nzc for ; Mon, 30 Jan 2006 14:44:12 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=jBI6pk1GB6TKBgI+XCKKypYIhkfCoCK3lt+FSp4NlMQ3yWdzGxCWC/QweFCV8gnVxc/8lcJv72rt1rnV7oEqKHklqEIQ0JtGBpVAhDIUWIdnEug6eFlzEIyocBvdvkYQubeOrnvB/bvTAgXu7c8aYNRnEFM3UhqQPdCnRWj+ZLc= Received: by 10.37.2.70 with SMTP id e70mr5378658nzi; Mon, 30 Jan 2006 14:44:12 -0800 (PST) Received: by 10.36.12.20 with HTTP; Mon, 30 Jan 2006 14:44:12 -0800 (PST) Message-ID: <31cc37360601301444i40d23d28vd396b6f1376a757@mail.gmail.com> Date: Mon, 30 Jan 2006 17:44:12 -0500 From: Henri Yandell To: continuum-users@maven.apache.org Subject: Continuum xmlrpc MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 1/27/06, Emmanuel Venisse wrote: > > > Henri Yandell a =E9crit : > > 2) xmlrpc python. > > This feature isn't tested and documentation is out of date. > We don't have officially a xmlrpc client, it will be integrated in next r= elease (java client), but > you can find it there : http://jira.codehaus.org/browse/CONTINUUM-544 I went ahead and used it and it's working pretty well. Had to add a few methods etc, which I've tacked on to the issue. I'm finding that although I can add, edit and remove projects, I can't seem to edit the build definition of the project (or add a 2nd one). Looking at the xmlrpc side of things: http://svn.apache.org/repos/asf/maven/continuum/branches/continuum-1.0.x/co= ntinuum-xmlrpc/src/main/java/org/apache/maven/continuum/xmlrpc/DefaultXmlRp= cHelper.java it looks like the hashtableToObject method only handles basic properties; not nested Objects. Born out by: " Could not convert a java.util.Vector to a java.util.List. Field name: buildDefinitions " from the convertValueToSetterType. So something for me to work on once I get continuum-1.0.x building. Hen