Hi, I suggest the following patch. By applying it, you get a project which is almost immediately usable from within Eclipse, the exception being that you have to add jar files to the "lib" directory. (Note, that I can think of no reason, why these files shouldn't be added to the repository. The licenses are compatible.)
Jochen
Index: .cvsignore =================================================================== RCS file: /home/cvspublic/ws-xmlrpc/.cvsignore,v retrieving revision 1.7 diff -u -r1.7 .cvsignore --- .cvsignore 15 Aug 2002 16:15:32 -0000 1.7 +++ .cvsignore 15 Jun 2004 20:29:15 -0000 @@ -1,3 +1,5 @@ target *~ maven.log +lib +build.properties Index: README.txt =================================================================== RCS file: /home/cvspublic/ws-xmlrpc/README.txt,v retrieving revision 1.4 diff -u -r1.4 README.txt --- README.txt 22 Feb 2002 13:36:15 -0000 1.4 +++ README.txt 15 Jun 2004 20:29:15 -0000 @@ -39,6 +39,15 @@ These properties define full paths to JARs files. +If you are using the Eclipse IDE: The XmlRpc package comes ready with +.classpath and .project files. Simply create a subdirectory "lib" and +add the following files: + + commons-codec-1.2.jar + commons-httpclient-2.0.jar + junit.jar + servlet.jar + -------------------------------------------------------------------------- R U N N I N G -------------------------------------------------------------------------- Index: .classpath =================================================================== RCS file: .classpath diff -N .classpath --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .classpath 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="examples/echo"/> + <classpathentry kind="src" path="src/java"/> + <classpathentry kind="src" path="src/test"/> + <classpathentry kind="lib" path="lib/commons-codec-1.2.jar"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="lib" path="lib/commons-httpclient-2.0.jar"/> + <classpathentry kind="lib" path="lib/servlet.jar"/> + <classpathentry kind="lib" path="lib/junit.jar"/> + <classpathentry kind="output" path="bin"/> +</classpath> Index: .project =================================================================== RCS file: .project diff -N .project --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ .project 1 Jan 1970 00:00:00 -0000 @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>ws-xmlrpc</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription>