Environment : CentOS 6.4 64bit, Python 2.6.6, Magento 1.7, Magento Core API, Suds 0.4.1
Python Code:
client = Client(http:// /figol/api/soap/?wsdl)
client.service.login('figol', 'figol123')
Error Detail: TypeNotFound: Type not found: '(Array, http://schemas.xmlsoap.org/soap/encoding/, )
But PHP Code:
$client = new SoapClient(http:// /figol/api/soap/?wsdl);
$session = $client->login('figol', 'figol123');
Works Perfectly.
I have tried many way(SOAP suds and the dreaded schema Type Not Found error), but there is no luck. Any help is very appreciated. Thanks.