Hi to all... Someone knows if is there possible to have a Python SOAP or XMLRPC server that works with VB? I would like you to include the examples clients and server programs.
My examples are: #Server.py import SOAPpy def sum(x,y): return x+y server = SOAPpy.SOAPServer(("localhost", 8080)) server.registerFunction(sum) server.serve_forever() #client.py import SOAPpy server = SOAPpy.SOAPProxy("http://localhost:8080") print server.sum(5,6) #This should print: 11 These programs work perfect. The thing is that I need to access the server from VB (like does SOAPpy accessing google's services) Many thanks Daniel -- http://mail.python.org/mailman/listinfo/python-list