SOAPpy is a part of Python Web Services project. It helps you writing web services servers and clients. http://pywebsvcs.sourceforge.net/
Here is a server example: import SOAPpy def hello(): return 'Hello, world!' server = SOAPpy.SOAPServer(('localhost', 10000)) server.registerFunction(hello) server.serve_forever() And a client: import SOAPpy server = SOAPpy.SOAPProxy('http://localhost:10000/') print server.hello() * * * Today I got the above client program running on IronPython. All related files are available here: https://svn.sourceforge.net/svnroot/fepy/trunk/seasoap/ Be sure to read the README.txt! (Big smile) 1. Get IPCE r3. 2. Get the latest pyexpat.py from FePy SVN. 3. Get SOAPpy 0.11.3 (not the latest version! sorry for that). This is the version available in Debian. 4. Apply patch-soappy 5. Run the client example. Enjoy! -- Seo Sanghyeon _______________________________________________ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com