Example: An XML-RPC client/server application in Java.
The Java package org.apache.xmlrpc provides classes to implement an XML-RPC client and an XML-RPC server. The package can be found at http://ws.apache.org/xmlrpc/
A copy of the package is under the name cis69mc.jar on Blackboard.
To compile and run Java classes with the package, copy it to your working directory and use the following commands (in a DOS shell):
- javac -classpath ”cis69mc.jar;." xyz.java
- java -classpath ”cis69mc.jar;." xyz.java
(replace xyz by the name of your file)