Re: Python xmlrpc servers?

2004-12-01 Thread ted holden
Skip Montanaro wrote: > If so, you need to qualify the reference to the handler class like > > SimpleXMLRPCServer.CGIXMLRPCRequestHandler Again thanks, that works. If I weren't worried about jinxing myself I'd say I seem to be in pretty good shape at this point... Ted -- http://mail.pyth

Re: Python xmlrpc servers?

2004-12-01 Thread ted holden
Jaime Wyant wrote: > Mark Pilgrim wrote a really neat piece of python code that did XML-RPC > over CGI. It seems to have disappeared from his website, though > (http://diveintomark.org/public/webservices.txt). > > If you can't dig it up, I have a working copy that I use. I'll post > it / email

Re: Python xmlrpc servers?

2004-12-01 Thread ted holden
Skip Montanaro wrote: > ted> I don't see what "lambda" is or how a lambda function is supposed > ted> to be construed as adding two numbers together. > > Lambda is a keyword in Python used to create and return very simple > (single-expression) functions. Lambda expressions can be used a

Python xmlrpc servers?

2004-12-01 Thread ted holden
I have a project for which being able to write xmlrpc server code in python would be vastly preferable to the second choice solution for a number of reasons. Unfortunately, pretty much everything I see on the net in the way of documentation appears either insufficient or outdated. The example gi