// Make the connection.
Hashtable result = callXmlRpc("get-contact", args);
result.remove("RESULT");
for(Iterator j = result.keySet().iterator(); j.hasNext();) {
String key = (String)j.next();
if(key.equals("country")) {
ret.set_country(toString(result.get(key)));
} else if(key.equals("first")) {
ret.set_fname(toString(result.get(key)));