Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > 282ba76331d32d96ac00e4024a30ac59 > files > 17

erlang-xmlrpc-1.13-2.fc14.x86_64.rpm

import org.apache.xmlrpc.*;
import java.util.*;

public class EchoClient {
    public static void main(String[] args) {
	try {
	    XmlRpcClient xmlrpc = new XmlRpcClient("http://localhost:4567/");
	    Vector params = new Vector();
	    params.addElement(new Double(42.5));
	    params.addElement(new String("foo"));
	    params.addElement(new Integer(7));
	    System.out.println(xmlrpc.execute("echo", params));
	} catch (Exception e) {
	    System.err.println(e);
	}
    }
}