XML-RPC for Python: "Secret Labs' xmlrpclib module is an implementation of the XML-RPC protocol. This implementation is tightly integrated with Python, which makes it very easy to call remote methods. For example, here's the Python code needed to call one of Userland's sample servers:
from xmlrpclib import Server
betty = Server('http://betty.userland.com')
print betty.examples.getStateName(41)
This results in a remote call to the examples.getStateName method published by the betty server, with the integer 41 as the single argument. The result from this call is a string with the value 'South Dakota'.
The marshalling and parsing classes provided by this module can also be used in XML-RPC server implementations. Sample code for Medusa and Python's SocketServer module is included in the current release."
Thursday, February 24, 2005
Subscribe to:
Post Comments (Atom)
Popular Posts
- AS400 Job Scheduler
- Library list for Web server
- Using QCLRDTAQ to clear data queues in CL and RPG
- About Us
- Creating an as400 Query
- as400 commands and APIs you'll use for handling messages
- An object-oriented Javascript library
- XMLHttpRequest & Ajax Working Examples - Links and Resources, Fiftyfoureleven.com
- UK Mobile Cost-Cutting Plan
- What is QZHQSSRV job?
No comments:
Post a Comment