1

当我使用soapUI 访问Web 服务时,我得到了格式正确的文本。但是当我使用 python 代码时,我得到一个字典,其中所有行都在一个 allBusType 键中。

from pysimplesoap.client import SoapClient
url = 'http://180.92.171.93:8080/UPSRTCServices/UPSRTCService?wsdl'
namespace = 'http://service.upsrtc.trimax.com/'
client = SoapClient(wsdl=url, namespace=namespace, trace=True)
print client.GetBusTypes()

上面的代码返回以下内容:

{'return': {'allBusType': [{'busName': u'AC SLEEPER'}, {'busType': u'ACS'}, {'ischildconcession': u'N'}, {'isseatlayout': u'N'}, {'isseatnumber': u'N'}, {'busName': u'AC-JANRATH'}, {'busType': u'JNR'}, {'ischildconcession': u'N'}, {'isseatlayout': u'Y'}, {'isseatnumber': u'Y'},....

根据以下屏幕,soapUI 将所有公交车站作为单独的标签返回。(并不是所有的都停在上面的单个标签中)

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns3:GetBusTypesResponse xmlns:ns2="com.trimax.upsrtc.xml.jaxb.model" xmlns:ns3="http://service.upsrtc.trimax.com/">
         <return>
            <allBusType>
               <busName>AC SLEEPER</busName>
               <busType>ACS</busType>
               <ischildconcession>N</ischildconcession>
               <isseatlayout>N</isseatlayout>
               <isseatnumber>N</isseatnumber>
            </allBusType>
            <allBusType>
               <busName>AC-JANRATH</busName>
               <busType>JNR</busType>
               <ischildconcession>N</ischildconcession>
               <isseatlayout>Y</isseatlayout>
               <isseatnumber>Y</isseatnumber>
            </allBusType>

我想知道这是python问题还是服务器问题。

对于每个条目,soapUI 响应中都有一个名为“ allBusType ”的开始和结束标记,而 python 响应中缺少该标记。Python 输出为所有条目返回单行。

4

1 回答 1

1

SoapClient返回 aSimpleXmlElement如 SoapClient 文档的第一行所述:

一个简单、最小且功能强大的 HTTP SOAP Web 服务使用者,使用 httplib2 进行连接,使用 SimpleXmlElement 进行 XML 请求/响应操作。

因此,要将其视为 xml,您需要调用as_xml返回的方法SimpleXmlElement

as_xml(pretty=False):返回文档的 XML 表示

以下应该有效:

from pysimplesoap.client import SoapClient
url = 'http://180.92.171.93:8080/UPSRTCServices/UPSRTCService?wsdl'
namespace = 'http://service.upsrtc.trimax.com/'
client = SoapClient(wsdl=url, namespace=namespace, trace=True)
results = client.GetBusTypes()
print results.as_xml()
于 2015-04-09T12:14:18.693 回答