1

这是我的xml:

<?xml version="1.0"?>
<soapenv:Envelope>
  <soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <wsse:Security soap:mustUnderstand="1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
      <wsse:UsernameToken wsu:Id="UsernameToken-1" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
        <wsse:Username>USERNAME</wsse:Username>
        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">1234</wsse:Password>
      </wsse:UsernameToken>
    </wsse:Security>
  </soapenv:Header>
  <soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <root xmlns="http://xmlns.oracle.com/Enterprise/tools/schema/InfoRtRequest.v1">
      <EMAIL>david</EMAIL>
    </root>
  </soapenv:Body>
</soapenv:Envelope>

这是我的演示:

wsdl = ''

client = Client(
    wsdl,
    wsse=UsernameToken('USERNAME', '1234'))

response = client.service.get_method(
    EMAIL='david')

它引发了 VaglidationError:

ValidationError: Missing element OPRID (root.OPRID)

不知道为什么,求大神帮忙,谢谢

4

1 回答 1

1

zeep 是在 python 中处理 SOAP 通信的高级库。您应该提供 wsdl 文件,以便更好地分析您的问题。

但是通过查看您提供的 xml 请求,似乎身份验证是使用标头完成的,并且数据是在正文中发送的。类似于我最近修复的用例。请参阅下面我的用例的 xml 请求。

<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Header>
        <ns0:myheaders xmlns:ns0="xxxxxx_stackoverflow_mask_xxxxxx">
            <ns0:username>xxxxxx_stackoverflow_mask_xxxxxx</ns0:username>
            <ns0:password>xxxxxx_stackoverflow_mask_xxxxxx</ns0:password>
        </ns0:myheaders>
    </soap-env:Header>
    <soap-env:Body>
        <ns0:Search02c xmlns:ns0="xxxxxx_stackoverflow_mask_xxxxxx">
            <ns0:name>
                <ns0:title>Mr</ns0:title>
                <ns0:forename>Srikanth</ns0:forename>
                <ns0:surname>Badveli</ns0:surname>
            </ns0:name>
        </ns0:Search02c>
    </soap-env:Body>
</soap-env:Envelope>

对于上面的xml,代码如下

from zeep import Client
header_credentials = {'username':'xxxxx','password':'xxxxx'}
tac_data = {'name': {'title':'xxxxx','forename':'xxxxx','surname':'xxxxx'}}

client = Client(wsdl=wsdl)
response = client.service.Search02c(tac_data, _soapheaders={'callcreditheaders':header_credentials})

在上面的代码中,“Search02c”是服务的操作名称。在检查 wsdl 文件时可以找到操作名称。在我的用例中,“Search02c”接受 2 个参数,它们是正文和标题。“tac_data”是 xml 正文(不是标题)的字典,“header_credentials”是凭证的字典。您的用例可能接受单个参数俱乐部标题和正文。参数结构可以在检查的 wsdl 文件中的操作名称之后找到。

您可以通过在命令提示符下运行此命令,在输出末尾找到操作名称及其结构。

python -mzeep wsdl_file_path.wsdl

我的 wsdl 文件的操作如下。

Operations:
    Search02c(searchDefinition: tac_data, _soapheaders={'headers': header_credentials}) -> outputResult: ns1:output

请记住,zeep 只接受字典作为输入数据并提供字典作为输出。如果您希望以 xml 格式接收响应,请在客户端设置中使用 raw_response=True。

有关更多信息,请参阅zeep 文档

于 2019-05-22T12:53:46.100 回答