xmlrpclib - methodHelp doesn't work



I tried out the examples in this website for XML-RPC using python -
http://www.onlamp.com/pub/a/python/2000/11/22/xmlrpcclient.html?page=2
But I get the following errors when I try to execute the code. Here is
the snippet of the code with the error messages.

<snip>

>>> meerkatsvr.system.methodSignature(meerkat.getChannels)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
NameError: name 'meerkat' is not defined
>>> meerkatsvr.system.methodHelp(meerkat.getItems)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
NameError: name 'meerkat' is not defined

</snip>

can someone tell me what is wrong.

Also is there any good online resource for XML-RPC with Python.

.



Relevant Pages

  • maximum() efficency
    ... I was looking at a Python function to find the maximum from a list. ... def maximum: ... iterators, for use with older versions of Python. ... except NameError: ...
    (comp.lang.python)
  • Re: XML-RPC - instance
    ... > If not with XML-RPC, ... With the simple XML-RPC server that is provided with Python, ... fixed services or transient services related to a session. ...
    (comp.lang.python)
  • Re: communicating with Java (from Python)
    ... > I want to communicate my Python application with the Java one. ... > Using Jython to be able to use pyro is not technically feasible. ... There was a thread to this topic a few weeks ago and XML-RPC came up ...
    (comp.lang.python)
  • Re: Quixote vs mod_python
    ... HTTP, FTP, WEB-DAV, XML-RPC, page templates, ... database connectors and python. ...
    (comp.lang.python)
  • Re: variables exist
    ... > how testing if a variable exists in python as isset in php?? ... except NameError: ... but that is really lousy Python; better make sure you always assign to ...
    (comp.lang.python)