Wim van Velthoven <[EMAIL PROTECTED]> writes:
> org.apache.xmlrpc.applet.SimpleXmlRpcClient.java does not detect faults.
> Witrh the following patch it does. (patch in 'XmlRpcSupport.startElement)
> --
> Wim van Velthoven
>
> *** SimpleXmlRpcClient.java.org Wo Dec 4 14:23:10 2002
> --- SimpleXmlRpcClient.java Wo Dec 4 14:17:29 2002
> ***************
> *** 388,393 ****
> --- 388,398 ----
> if (debug)
> System.err.println ("startElement: "+name);
>
> + if( "fault".equals (name))
> + {
> + fault = true;
> + } else
> +
> if ("value".equals (name))
> {
> // System.err.println ("starting value");
>
>
This will be a good one to get in, too.
--
Daniel Rall <[EMAIL PROTECTED]>