是否可以使用 Python 的 requests
库来发送 SOAP 请求?
最佳答案
确实有可能。
下面是一个使用普通请求库调用 Weather SOAP 服务的示例:
import requests
url="http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL"
#headers = {'content-type': 'application/soap+xml'}
headers = {'content-type': 'text/xml'}
body = """<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:ns0="http://ws.cdyne.com/WeatherWS/" 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:GetWeatherInformation/></ns1:Body>
</SOAP-ENV:Envelope>"""
response = requests.post(url,data=body,headers=headers)
print response.content
一些注意事项:
application/soap+xml
可能是使用更正确的 header (但天气服务更喜欢 text/xml
例如:
from jinja2 import Environment, PackageLoader
env = Environment(loader=PackageLoader('myapp', 'templates'))
template = env.get_template('soaprequests/WeatherSericeRequest.xml')
body = template.render()
有些人提到了 suds 库。 Suds 可能是与 SOAP 交互的更正确的方式,但我经常发现当您的 WDSL 格式错误时它会有点 panic (TBH,当您与一个仍然使用 SOAP ;) )。
你可以像这样用 SOAP 水做上面的事情:
from suds.client import Client
url="http://wsf.cdyne.com/WeatherWS/Weather.asmx?WSDL"
client = Client(url)
print client ## shows the details of this service
result = client.service.GetWeatherInformation()
print result
注意: 使用 suds 时,您几乎总是最终需要 use the doctor !
最后,调试 SOAP 的一点好处; TCPdump 是您的 friend 。在 Mac 上,你可以像这样运行 TCPdump:
sudo tcpdump -As 0
这有助于检查实际通过线路的请求。
以上两个代码片段也可作为要点:
关于python - 使用 Python 请求发送 SOAP 请求,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18175489/