12

虽然我过去使用过 API,但这是我尝试使用的第一个 SOAP。我从 SOAP 教程中复制、粘贴和更改了其中的一些代码,但我已经在 10 个不同的示例中看到它以 10 种不同的方式完成,但没有一个对代码的解释非常清楚。也许下面的代码不是最好的方法,但这就是为什么我正在寻找一些帮助和一个明确的方向。非常感谢。

import string, os, sys, httplib

server_addr = "auctions.godaddy.com"
service_action = "GdAuctionsBiddingWSAPI/GetAuctionList"

body = """
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.example.com/services/wsdl/2.0">
<soapenv:Header/>
<soapenv:Body>
<ns:serviceListRequest>
<ns:userInfo>
</ns:userInfo>
</ns:serviceListRequest>
</soapenv:Body>
</soapenv:Envelope>"""

request = httplib.HTTPConnection(server_addr)
request.putrequest("POST", service_action)
request.putheader("Accept", "application/soap+xml, application/dime, multipart/related, text/*")
request.putheader("Content-Type", "text/xml; charset=utf-8")
request.putheader("Cache-Control", "no-cache")
request.putheader("Pragma", "no-cache")
request.putheader("SOAPAction", "https://auctions.godaddy.com/gdAuctionsWSAPI/gdAuctionsBiddingWS.asmx?op=GetAuctionList" + server_addr + service_action)
request.putheader("Content-Length", "length")
request.putheader("apiKey", "xxxxxx")
request.putheader("pageNumber", "1")
request.putheader("rowsPerPage", "1")
request.putheader("beginsWithKeyword", "word")
request.endheaders()
request.send(body)
response = request.getresponse().read()

print response
4

2 回答 2

10

不要尝试推出您自己的 SOAP 客户端 — 尽管名称如此,SOAP 一点也不简单。

找到任何合适的 SOAP 库并将其用于您的 SOAP 通信。

一般来说,哪个 SOAP 库是“最好的”这个问题本质上是有争议的,而且随着项目的出现和过时,答案往往会随着时间而变化。选择一个适合您的用例的,任何一个都可能比自己编写更好。

于 2013-03-15T15:57:27.593 回答
1

我可以建议你使用suds。它非常好并且被广泛使用。

更新:基础 suds 项目很长时间没有活动。当前项目有一个新的分支,现在非常活跃。

asuds项目

于 2013-03-15T16:02:26.440 回答