Hi,
I had to bypasss the XML RPC ServiceProxy and HTTP POST directly to a
server. The server returns an XMLRPC response. I want to use the
XMLRPC module to handle the response.
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