Following patch seems to be necessary to compile under JDK 1.4.
http://java.sun.com/j2se/1.4/docs/api/java/lang/Throwable.html#getCause()
Due to deprecation issues I also had to throw out the entire secure
package.
Corey
Index: src/java/org/apache/xmlrpc/ParseFailed.java
===================================================================
RCS file:
/home/cvspublic/xml-rpc/src/java/org/apache/xmlrpc/ParseFailed.java,v
retrieving revision 1.1
diff -u -r1.1 ParseFailed.java
--- src/java/org/apache/xmlrpc/ParseFailed.java 26 Aug 2002 17:41:57
-0000 1.1
+++ src/java/org/apache/xmlrpc/ParseFailed.java 27 Sep 2002 21:31:13
-0000
@@ -78,7 +78,7 @@
this.cause = cause;
}
- public Exception getCause()
+ public Throwable getCause()
{
return cause;
}