是否可以使用Python的requests
库来发送SOAP请求?
答案 0 :(得分:110)
确实有可能。
以下是使用普通请求lib调用Weather SOAP Service的示例:
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
可能是要使用的正确的标头(但是weatherservice更喜欢text/xml
例如:
from jinja2 import Environment, PackageLoader
env = Environment(loader=PackageLoader('myapp', 'templates'))
template = env.get_template('soaprequests/WeatherSericeRequest.xml')
body = template.render()
有些人提到了肥皂库。 Suds可能是与SOAP交互的正确的方式,但我常常发现当你的WDSL形成不良时会发生一些恐慌(TBH,你很可能会这样做)处理仍然使用SOAP的机构;))。
您可以使用suds这样做:
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是你的朋友。在Mac上,您可以像这样运行TCPdump:
sudo tcpdump -As 0
这对于检查实际通过网络的请求非常有用。
以上两个代码段也可以作为要点: