PysimpleSOAP - 无效的args结构

时间:2014-05-26 21:05:29

标签: python wsdl pysimplesoap

我遇到了调用webservice方法的问题,我有

client = SoapClient(wsdl="address")
countries = {'countryCode':1, 'webapiKey':'apiKey'};
client.doGetCountries(**countries)

但我收到错误

ValueError: Invalid Args Structure. Errors: ["type mismatch for value. master(<class 'dict'>): {'DoGetCountriesRequest': *{'countryCode': <class 'int'>, 'webapiKey': <class 'str'>}*}, test(<class 'dict'>): {'DoGetCountriesRequest': {'webapiKey': 'webapi', 'countryCode': 1}}"]

所以我想我提供了错误的args结构,但我不知道如何解决这个问题?

有什么建议吗?

0 个答案:

没有答案