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.
>
> 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
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+" !"
>
> s
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))
> 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://mail.