1

我正在尝试使用此代码从 wsdl 获取数据。

查询网站的 zipid("60630") 工作正常,但在我的代码中它给出的错误为

“无效的邮编”

wsdlFile = 'http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl'
wsdlObject = WSDL.Proxy(wsdlFile)
wsdlObject.show_methods()
zipid = "60630"
result = wsdlObject.GetCityWeatherByZIP(ZIP=zipid)
print result[1]

有人可以帮助这里有什么问题以及为什么代码不能正常工作。

谢谢 !!!

4

1 回答 1

0

问题可能是您的客户端发送了服务器不理解的请求。似乎您正在使用SOAPpy,这是我尝试时发送的请求:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
  SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
  xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:xsd="http://www.w3.org/1999/XMLSchema"
>
<SOAP-ENV:Body>
<GetCityWeatherByZIP SOAP-ENC:root="1">
<v1 xsi:type="xsd:string">60630</v1>
</GetCityWeatherByZIP>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

在使用时比较suds

from suds.client import Client
cli = Client("http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl")
cli.service.GetCityWeatherByZIP(ZIP=60630)

它产生:

<?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:GetCityWeatherByZIP>
      <ns0:ZIP>60630</ns0:ZIP>
    </ns0:GetCityWeatherByZIP>
  </ns1:Body>
</SOAP-ENV:Envelope>

(使用wireshark捕获)

第二个请求从服务器返回一个有效结果。

我不太了解 SOAPpy,无法提出解决此问题的方法,但也许您可以考虑将客户端库切换为 suds。

于 2012-12-11T23:02:18.780 回答