0

我需要一个可以处理多部分附件的 python SOAP 库。我的理解是 SOAPpy 或 suds 不支持此功能,但 ZSI 和 zeep 支持此功能。然而,虽然 SOAPpy 可以很好地处理我需要使用的 WSDL 文件,但 ZSI 和 zeep 却给了我错误。这是 WSDL 文件:http ://nva1wss.webex.com/nbr/services/NBRStorageService?wsdl 。我在 SoapUI 中打开文件并使用“检查 WSI 合规性”选项,它通过了所有检查。

这是我的错误:

zeep.exceptions.NamespaceError:无法解析类型 {NBRStorageService}DataHandler。没有可用于命名空间 u'NBRStorageService' 的架构。

ZSI.generate.WsdlGeneratorError:未能找到架构“NBRStorageService”的导入,可能缺少@schemaLocation 属性。

----更新信息----

根据 zeep 的详细输出,我认为 WSDL 的问题在于它使用了 zeep 无法在http://schemas.xmlsoap.org/soap/encoding/的架构文档中解析的数据类型。这是 WSDL 中的数据类型定义:

<wsdl:types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="https://nva1wss.webex.com/nbr/services/NBRStorageService">
        <import namespace="NBRStorageService"/>
        <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
        <complexType name="ArrayOf_tns1_DataHandler">
            <complexContent>
                <restriction base="soapenc:Array">
                    <attribute ref="soapenc:arrayType"
                    wsdl:arrayType="tns1:DataHandler[]"/>
                </restriction>
            </complexContent>
        </complexType>
    </schema>
</wsdl:types>

此 WSDL 似乎是使用 Apache Axis 1.4 生成的。

关于如何解决这个问题的任何想法?或者,如果有人对服务器端更改有任何具体建议,我无法提出,但我当然可以将它们传达给处理服务器的开发人员。

谢谢!

4

1 回答 1

1

好的。我修好了它!

因此,我进行了一些挖掘,发现这是 Axis 生成的 WSDL 的常见问题。DataHandler 类型不应位于 tns1 命名空间中。它应该在 apachesoap 命名空间中。所以,我更改了 WSDL 中的命名空间,但它仍然不起作用。

因此,我进行了更多挖掘,发现“DataHandler 是一种特定于平台的类型,除了 Axis 之外没有其他平台可以理解”,解决方法是将其更改为字节类型。

因此,这是我在本地修改并正在工作的 WSDL 部分:

<wsdl:types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="https://nva1wss.webex.com/nbr/services/NBRStorageService">
        <import namespace="NBRStorageService"/>
        <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
        <complexType name="ArrayOf_tns1_DataHandler">
            <complexContent>
                <restriction base="soapenc:Array">
                    <attribute ref="soapenc:arrayType"
                    wsdl:arrayType="soapenc:byte[]"/>
                </restriction>
            </complexContent>
        </complexType>
    </schema>
</wsdl:types>

而且,砰!有用!我现在可以下载和处理附件,如下所述:http: //docs.python-zeep.org/en/master/attachments.html

于 2017-08-02T08:49:26.160 回答