Return-Path: Delivered-To: apmail-xml-rpc-dev-archive@xml.apache.org Received: (qmail 8411 invoked by uid 500); 8 Aug 2002 04:42:39 -0000 Mailing-List: contact rpc-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: rpc-dev@xml.apache.org Delivered-To: mailing list rpc-dev@xml.apache.org Received: (qmail 8402 invoked from network); 8 Aug 2002 04:42:38 -0000 Received: from 12-233-127-93.client.attbi.com (HELO despot) (12.233.127.93) by daedalus.apache.org with SMTP; 8 Aug 2002 04:42:38 -0000 Received: by despot (Postfix, from userid 500) id 6AB16348254; Wed, 7 Aug 2002 21:42:56 -0700 (PDT) Sender: dlr@finemaltcoding.com To: rpc-dev@xml.apache.org Subject: Re: cvs commit: xml-rpc/src/java/org/apache/xmlrpc/applet SimpleXmlRpcClient.java References: <20020807173539.84273.qmail@icarus.apache.org> From: Daniel Rall Date: 07 Aug 2002 10:59:59 -0700 In-Reply-To: <20020807173539.84273.qmail@icarus.apache.org> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Lines: 48 Xref: despot.finemaltcoding.com mail.sent:7306 X-Gnus-Article-Number: 7306 Wed Aug 7 10:59:59 2002 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Status: O X-Status: X-Keywords: Someone needs to step up and gut this class. 80% of the code in it is duplicated in the core package. dlr@apache.org writes: > dlr 2002/08/07 10:35:39 > > Modified: src/java/org/apache/xmlrpc/applet SimpleXmlRpcClient.java > Log: > Added some notes. > > Revision Changes Path > 1.5 +5 -4 xml-rpc/src/java/org/apache/xmlrpc/applet/SimpleXmlRpcClient.java > > Index: SimpleXmlRpcClient.java > =================================================================== > RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/applet/SimpleXmlRpcClient.java,v > retrieving revision 1.4 > retrieving revision 1.5 > diff -u -u -r1.4 -r1.5 > --- SimpleXmlRpcClient.java 20 Mar 2002 15:11:03 -0000 1.4 > +++ SimpleXmlRpcClient.java 7 Aug 2002 17:35:39 -0000 1.5 > @@ -80,13 +80,14 @@ > import uk.co.wilson.xml.MinML; > > /** > - * A simple XML-RPC client > + * A simple XML-RPC client. > + * > + * FIXME: This code is VERY out of date with the rest of the package. > * > * @version $Id$ > */ > public class SimpleXmlRpcClient > { > - > URL url; > > /** > @@ -130,7 +131,7 @@ > } > > /** > - * > + * FIXME: Leverage the XmlRpc class. > */ > class XmlRpcSupport extends HandlerBase > {