I tried using the handleResponse function from the XMLRPCMethod. But I
couldn't get it to work.
I have something like this:
function foo(url)
{
var liburl = imprt("urllib");
var xmlrpc = imprt("xmlrpc");
var resp = postURL(url);
var obj = new this.xmlrpc.XMLRPCMethod();
test.handleResponse(obj);
}
Are functions declared as "var" in the class not callable from outside
the function?
-Roy