所以我試圖使用SUDS訪問這個API https://www.clarityaccounting.com/api-docs/。下面是應該工作的代碼:你能幫我解決這個SUDS/SOAP問題嗎?
from suds.client import Client
client = Client('https://www.clarityaccounting.com/api/v1?wsdl')
token = client.service.doLogin('demo', 'demo', 'www.kashoo.com', 'en_US', 300000)
但我得到這個錯誤:
WebFault: Server raised fault: 'No such operation: (HTTP GET PATH_INFO: /api/v1)'
他們的支持傢伙說,要求應該是這樣的:
<SOAP-ENV:Envelope
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:api="http://api.service.books/">
<SOAP-ENV:Body>
<api:doLogin>
<username>demo</username>
<password>demo</password>
<siteName>www.kashoo.com</siteName>
<locale>en_US</locale>
<duration>300000</duration>
</api:doLogin>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
但肥皂水」看起來像這樣:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:ns0="http://api.service.books/"
xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<ns1:Body>
<ns0:doLogin>
<username>demo</username>
<password>demo</password>
<siteName>www.kashoo.com</siteName>
<locale>en_US</locale>
<duration>300000</duration>
</ns0:doLogin>
</ns1:Body>
</SOAP-ENV:Envelope>
我是一個真正的SOAP和SUDS新手,但我聽說SUDS是從這裏使用最好的SOAP庫:What SOAP client libraries exist for Python, and where is the documentation for them?
所以我的問題是什麼是不同的關鍵部分,並使請求失敗以及如何配置SUDS以發送格式正確的請求?
很高興幫助!在星期五下午搞清楚是個有趣的問題。 – jathanism 2010-03-05 22:06:36
+1 Nice touch包含調試幫助 – Draemon 2010-03-17 11:51:12
謝謝!我只是遇到了與其他Web服務相同的問題,但同樣的https/http問題。即使WSDL表示使用http,我也無法找到如何設置客戶端使用https。 – 2010-09-16 14:21:34