Hi,
> function foo(url)
> {
> var liburl = imprt("urllib");
> var xmlrpc = imprt("xmlrpc");
>
> var resp = postURL(url);
> var obj = new this.xmlrpc.XMLRPCMethod();
>
> test.handleResponse(obj);
> }
>
handleResponse is declared with var and therefor enot visible outside
of the class.
it might be a good idea to handle have it part of the object so one
can do things like you describe.
Jan