【问题标题】:how to correctly generate the xml with zeep?如何用zeep正确生成xml?
【发布时间】:2019-05-21 21:52:40
【问题描述】:

我正在尝试生成一个 xml 以使用 ZEEP 使用 Web 服务,但生成的 xml 对服务无效,元素中的类型未正确添加。如何在元素中正确添加 xsi 类型:type = "ns1: Array" / xsi: type = "ns0: string"?或正确配置 zeep 以创建具有所有属性的元素?。

这是发送的内容:

<SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns0="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://sandbox.coordinadora.com/agw/ws/guias/1.6/server.php" xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SOAP-ENV:Body>
    <ns3:Guias_imprimirRotulos>
      <p>
        <id_rotulo>55</id_rotulo>
        <codigos_remisiones/>
        <usuario>myuser.ws</usuario>
        <clave>6fb1bf6de4550985c</clave>
      </p>
    </ns3:Guias_imprimirRotulos>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

这是我的代码:

import zeep
from zeep import Client
from zeep.plugins import HistoryPlugin
from lxml import etree

history = HistoryPlugin()
wsdl = 'http://sandbox.coordinadora.com/agw/ws/guias/1.6/server.php?wsdl'
client = Client(wsdl=wsdl, plugins=[history])
client.set_ns_prefix('SOAP-ENC', 'http://schemas.xmlsoap.org/soap/encoding/')
client.set_ns_prefix('SOAP-ENV', 'http://schemas.xmlsoap.org/soap/envelope/')
client.set_ns_prefix('xsi', 'http://www.w3.org/2001/XMLSchema-instance')
client.set_ns_prefix('ns0', 'http://www.w3.org/2001/XMLSchema')
client.set_ns_prefix('ns1', 'http://schemas.xmlsoap.org/soap/encoding/')
client.set_ns_prefix('ns2', 'http://schemas.xmlsoap.org/soap/envelope/')
client.set_ns_prefix('ns3', 'http://sandbox.coordinadora.com/agw/ws/guias/1.6/server.php')
client.set_ns_prefix('encodingStyle', 'http://schemas.xmlsoap.org/soap/encoding/')


data = {'id_rotulo':'55',
    'codigos_remisiones':['68630005830'],
    'usuario':'myuser.ws',
    'clave':'6fb1bf6de4550985c'
    }

client.service.Guias_imprimirRotulos(data)

for hist in [history.last_sent, history.last_received]:
    print(etree.tostring(hist["envelope"], encoding="unicode", pretty_print=True))

这是应该发送的:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns0="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://sandbox.coordinadora.com/agw/ws/guias/1.6/server.php" xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Header/>
    <ns2:Body>
        <ns3:Guias_imprimirRotulos>
            <p xsi:type="ns3:Agw_imprimirRotulosIn">
                <id_rotulo xsi:type="ns0:string">55</id_rotulo>
                <codigos_remisiones xsi:type="ns1:Array">
                    <id_remision xsi:type="ns0:string">68630005829</id_remision>
                </codigos_remisiones>
                <usuario xsi:type="ns0:string">myuser.ws</usuario>
                <clave xsi:type="ns0:string">6fb1bf6dc37090a7e4550985c</clave>
            </p>
        </ns3:Guias_imprimirRotulos>
    </ns2:Body>
</SOAP-ENV:Envelope>

【问题讨论】:

    标签: python web-services soap zeep


    【解决方案1】:
    wsdl = "http://sandbox.coordinadora.com/agw/ws/guias/1.6/server.php?wsdl"
    client = zeep.Client(wsdl=wsdl)
    
    str_element = client.get_element("ns1:string")
    str_tracking_code = zeep.xsd.AnyObject(str_element, "68630005830")
    
    response = client.service.Guias_imprimirRotulos(
        p={
            "id_rotulo": "44",
            "codigos_remisiones": [str_tracking_code],
            "usuario": user,
            "clave": hashlib.sha256(
                bytes(password, encoding="utf-8")
            ).hexdigest(),
        }
    )
    

    【讨论】:

    • 虽然此代码可能会回答问题,但提供有关它如何和/或为什么解决问题的额外上下文将提高​​答案的长期价值。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-01-08
    • 2018-08-20
    • 2021-07-19
    相关资源
    最近更新 更多