'How to code this simple PHP SOAP client in Python
I'm new in python, can you help me, how to write this PHP code for SOAP client in Python?
Thanks
$client = new SoapClient('http://wsdlurl',
array(
'login' => 'login',
'password' => 'password',
'trace' => 1
)
);
$response = $client->__soapCall(
'setPassword',
array("password" => 'mynewpassword')
);
I tried it with suds client, but I don't know how to pass the first parameters to the client initialization like in php new SoapClient(url, parameters).
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
