Re: anybody have a CGIXMLRPCRequestHandler example?

2005-05-02 Thread Chris Curvey
here's the simple example, for posterity import os import SimpleXMLRPCServer class Foo: def settings(self): return os.environ def echo(self, something): return something def greeting(self, name): return hello, + name handler =

anybody have a CGIXMLRPCRequestHandler example?

2005-04-28 Thread ccurvey
I see the ones in the docs, but I really (apparently) need some usage notes. Something as simple as an echo would probably do the trick. -- http://mail.python.org/mailman/listinfo/python-list