Hi there.
I was wondering, since the _cpFilterList will be deprecated in future
versions of CherryPy,
can someone please provide a clear example on how to impement a XMLRPC
handling controller that is mounted to the Root one?

Somethis to make this work:

class RPCController(controllers.Root):
    @turbogears.expose()
    def test(self, i):
          return i+1

class Root(controllers.Root):
    RPC = RPCController()


Thanks,

Eli

Reply via email to