Re: python-soappy

2006-01-12 Thread m.banaouas
Mikalai a écrit : While talking about SOAPpy module, I'm facing an authentication problem with it: I'm consuming a WebServices server requiring authentication, and I did not found yet how to give authentication code (username:password) while calling any mehode of the webservice. In

python-soappy

2006-01-11 Thread Yves Glodt
Hi list, can anybody point me to a tutorial, howto or example code of python-soappy...? google did not have really useful results about... Best regards, Yves -- http://mail.python.org/mailman/listinfo/python-list

Re: python-soappy

2006-01-11 Thread Nico Grubert
can anybody point me to a tutorial, howto or example code of python-soappy...? google did not have really useful results about... This might be helpful: http://www-128.ibm.com/developerworks/library/ws-pyth5/ http://users.skynet.be/pascalbotte/rcx-ws-doc/python.htm Nico -- http

Re: python-soappy

2006-01-11 Thread tooper
On the client side : from SOAPpy import SOAPProxy server= SOAPProxy(http://foo.bar.org:8090;) print server.Hello(world) On the server side : from SOAPpy import SOAPServer def Hello(name): return Hello +name+ ! server= SOAPServer((localhost,8080))

Re: python-soappy

2006-01-11 Thread m.banaouas
tooper a écrit : On the client side : from SOAPpy import SOAPProxy server= SOAPProxy(http://foo.bar.org:8090;) print server.Hello(world) On the server side : from SOAPpy import SOAPServer def Hello(name): return Hello +name+ ! server=

Re: python-soappy

2006-01-11 Thread Mikalai
While talking about SOAPpy module, I'm facing an authentication problem with it: I'm consuming a WebServices server requiring authentication, and I did not found yet how to give authentication code (username:password) while calling any mehode of the webservice. In Apache+mod_python I use