Return-Path: Delivered-To: apmail-continuum-users-archive@www.apache.org Received: (qmail 66826 invoked from network); 12 Mar 2008 13:21:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Mar 2008 13:21:17 -0000 Received: (qmail 38812 invoked by uid 500); 12 Mar 2008 13:21:13 -0000 Delivered-To: apmail-continuum-users-archive@continuum.apache.org Received: (qmail 38787 invoked by uid 500); 12 Mar 2008 13:21:13 -0000 Mailing-List: contact users-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@continuum.apache.org Delivered-To: mailing list users@continuum.apache.org Delivered-To: moderator for users@continuum.apache.org Received: (qmail 72763 invoked by uid 500); 12 Mar 2008 12:39:10 -0000 Delivered-To: apmail-maven-continuum-users@maven.apache.org X-ASF-Spam-Status: No, hits=-2.2 required=10.0 tests=MIME_QP_LONG_LINE,RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) X-VirusChecked: Checked X-Env-Sender: ads@exel.co.uk X-Msg-Ref: server-12.tower-80.messagelabs.com!1205325516!13336151!1 X-StarScan-Version: 5.5.12.14.2; banners=exel.co.uk,-,- X-Originating-IP: [213.38.98.10] From: Adam Shepherd To: "'continuum-users@maven.apache.org'" Date: Wed, 12 Mar 2008 12:38:34 +0000 Subject: xmlrpc issue Thread-Topic: xmlrpc issue Thread-Index: AchZ7kp+dlqGwcyeSwOfqAfdBqZLvQqTvaUQ Message-ID: <05706C794620D440A527E6B3FE71502108AD7B4C@exelmailserver.exel.co.uk> References: <4790D440.9060302@yahoo-inc.com> In-Reply-To: <4790D440.9060302@yahoo-inc.com> Accept-Language: en-US, en-GB Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, en-GB Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginalArrivalTime: 12 Mar 2008 12:38:36.0482 (UTC) FILETIME=[FDBAFA20:01C8843D] X-Virus-Checked: Checked by ClamAV on apache.org Hi, I'm=20in=20the=20process=20of=20using=20the=20xmlrpc=20client=20to=20start= =20a=20build=20whenever=20a=20check-in=20occurs.=20Initially=20i'm=20just=20= trying=20to=20determine=20which=20project=20is=20checked=20in=20by=20passi= ng=20the=20check=20in=20location=20and=20then=20getting=20the=20project=20= id.=20My=20issue=20is=20that=20when=20i=20try=20to=20use=20getProjects=20(= or=20buildGroup)=20i=20get=20this=20exception: Exception=20in=20thread=20"main"=20org.apache.xmlrpc.XmlRpcException:=20Fa= iled=20to=20invoke=20method=20getProjects=20in=20class=20org.apache.maven.= continuum.xmlrpc.server.ContinuumServiceImpl:=20null =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcStreamTranspor= t.readResponse(XmlRpcStreamTransport.java:184) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcStreamTranspor= t.sendRequest(XmlRpcStreamTransport.java:145) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcHttpTransport.= sendRequest(XmlRpcHttpTransport.java:94) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcSunHttpTranspo= rt.sendRequest(XmlRpcSunHttpTransport.java:39) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcClientWorker.e= xecute(XmlRpcClientWorker.java:53) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcClient.execute= (XmlRpcClient.java:166) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcClient.execute= (XmlRpcClient.java:136) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.XmlRpcClient.execute= (XmlRpcClient.java:125) =20=20=20=20=20=20=20=20at=20org.apache.xmlrpc.client.util.ClientFactory$1= .invoke(ClientFactory.java:104) =20=20=20=20=20=20=20=20at=20$Proxy0.getProjects(Unknown=20Source) =20=20=20=20=20=20=20=20at=20org.apache.maven.continuum.xmlrpc.client.Cont= inuumXmlRpcClient.getProjects(ContinuumXmlRpcClient.java:112) =20=20=20=20=20=20=20=20at=20uk.co.exel.continuumXMLRPC.main(continuumXMLR= PC.java:68) My=20code=20is=20here: client=20=3D=20new=20ContinuumXmlRpcClient(=20new=20URL(=20args[0]=20),=20= args[1],=20args[2]=20); int=20projectGroupId=20=3D=202; ProjectSummary=20ps; System.out.println(=20"Projects=20list."=20); System.out.println(=20"=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D"=20); List=20projects=20=3D=20client.getProjects(=20projectGroupId=20); for=20(=20Iterator=20i=20=3D=20projects.iterator();=20i.hasNext();=20) { =20=20=20=20=20=20=20=20ps=20=3D=20(ProjectSummary)=20i.next(); =20=20=20=20=20=20printProjectSummary(=20ps=20); =20=20=20=20=20=20System.out.println(); } If=20anyone=20has=20any=20suggestions=20that'd=20be=20great. Thanks Adam This=20email=20and=20any=20files=20transmitted=20with=20it=20are=20confide= ntial=20and=20intended=20solely=20for=20the=20use=20of=20the=20individual=20= or=20entity=20to=20whom=20it=20is=20addressed.=20Any=20views=20or=20opinio= ns=20are=20solely=20of=20the=20author=20and=20do=20not=20necessarily=20rep= resent=20those=20of=20Exel=20Computer=20Systems=20plc.=20If=20you=20have=20= received=20this=20email=20in=20error=20please=20notify=20Customer=20Servic= es=20on=20+44=20(0)=20115=20946=200101.=20Exel=20Computer=20Systems=20plc=20= is=20a=20public=20limited=20company,=20registered=20in=20England=20and=20W= ales,=20registered=20number=2001873499,=20registered=20office=20Bothe=20Ha= ll,=20Sawley,=20Long=20Eaton,=20Nottingham,=20NG10=203XL,=20VAT=20No.=2041= 6188548. This=20e-mail=20has=20been=20scanned=20for=20all=20viruses=20by=20Star.=20= The service=20is=20powered=20by=20MessageLabs.=20http://www.star.net.uk ________________________________________________________________________