使用Python请求发送SOAP请求

时间:2013-08-11 18:51:35

标签: python soap python-requests

是否可以使用Python的requests库来发送SOAP请求?

1 个答案:

答案 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

有些说明:

  • 标题很重要。没有正确的标头,大多数SOAP请求都无法工作。 application/soap+xml可能是要使用的正确的标头(但是weatherservice更喜欢text/xml
  • 这会将响应作为xml字符串返回 - 然后您需要解析该xml。
  • 为简单起见,我已将请求包含为纯文本。但最佳做法是将其存储为模板,然后您可以使用jinja2(例如)加载它 - 并传入变量。

例如:

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 

这对于检查实际通过网络的请求非常有用。

以上两个代码段也可以作为要点: