找不到元素'wsdl:definitions'的声明

时间:2017-05-14 06:48:56

标签: xml xsd wsdl

我试图搜索我的问题的解决方案但没有成功。

当我尝试使用XSD验证我的XML文件时,我收到下一个错误:

  

“cvc-elt.1:找不到元素'wsdl:definitions'的声明”

我正在使用http://www.xmlvalidation.com/index.php验证它?

在我得到的其他验证器中:

  

元素定义:模式有效性错误:元素“{http://schemas.xmlsoap.org/wsdl/}定义”:没有可用于验证根的匹配全局声明。

我的XML / wsdl文件是

filtered = queryset.filter(**dict_container)

我的xsd文件是:

 <?xml version='1.0' encoding='UTF-8'?><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://com.my.company/IFBTCIBPSI" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="IFBTCIBPSI" targetNamespace="http://com.my.company/IFBTCIBPSI">
  <wsdl:types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://com.my.company/IFBTCIBPSI" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:QF2="urn:http://com.my.company/RSException_ARRAY" xmlns:QF1="urn:http://com.my.company/RSErrorMessage_ARRAY" xmlns:Q5="urn:com/EXCEPTION_ARRAY" xmlns:Q4="urn:com/IMOFDA" xmlns:Q3="urn:com/IMOC" xmlns:Q2="urn:com/IMIC" targetNamespace="http://com.my.company/IFBTCIBPSI">
  <xsd:import namespace="urn:http://com.my.company/RSErrorMessage_ARRAY" schemaLocation="http://mycompany.com/IFBTCIBPSI?xsd=RSErrorMessage_ARRAY.xsd" />
  <xsd:import namespace="urn:http://com.my.company/RSException_ARRAY" schemaLocation="http://mycompany.com/IFBTCIBPSI?xsd=RSException_ARRAY.xsd" />
  <xsd:import namespace="urn:com/IMIC" schemaLocation="http://mycompany.com/IFBTCIBPSI?xsd=IMIC.xsd" />
  <xsd:import namespace="urn:com/IMOC" schemaLocation="http://mycompany.com/IFBTCIBPSI?xsd=IMOC.xsd" />
  <xsd:import namespace="urn:com/IMOFDA" schemaLocation="http://mycompany.com/IFBTCIBPSI?xsd=IMOFDA.xsd" />
  <xsd:import namespace="urn:com/EXCEPTION_ARRAY" schemaLocation="http://mycompany.com/IFBTCIBPSI?xsd=EXCEPTION_ARRAY.xsd" />
  <xsd:element name="IFBTCIBP">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element ref="Q2:IMIC" />
        <xsd:element ref="Q5:EXCEPTION_ARRAY" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="IFBTCIBPR">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element ref="Q3:IMOC" />
        <xsd:element ref="Q4:IMOFDA" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="RSError">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element ref="QF1:RSErrorMessage_ARRAY" />
        <xsd:element ref="QF2:RSException_ARRAY" />
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>
  </wsdl:types>
  <wsdl:message name="IFBTCIBPR">
    <wsdl:part element="tns:IFBTCIBPR" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="RSError">
    <wsdl:part element="tns:RSError" name="fault">
    </wsdl:part>
  </wsdl:message>
  <wsdl:message name="IFBTCIBP">
    <wsdl:part element="tns:IFBTCIBP" name="parameters">
    </wsdl:part>
  </wsdl:message>
  <wsdl:portType name="IFBTCIBPSI">
    <wsdl:operation name="IFBTCIBP">
<wsdl:documentation />
      <wsdl:input message="tns:IFBTCIBP">
    </wsdl:input>
      <wsdl:output message="tns:IFBTCIBPR">
    </wsdl:output>
      <wsdl:fault message="tns:RSError" name="fault">
    </wsdl:fault>
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="IFBTCIBPSI" type="tns:IFBTCIBPSI">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="IFBTCIBP">
      <soap:operation soapAction="http://com.my.company/IFBTCIBPSI/IFBTCIBP" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
      <wsdl:fault name="fault">
        <soap:fault name="fault" use="literal" />
      </wsdl:fault>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="IFBTCIBPSI">
<wsdl:documentation />
    <wsdl:port binding="tns:IFBTCIBPSI" name="IFBTCIBPSHttpS11Ep">
      <soap:address location="http://mycompany.com/IFBTCIBPSI" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

请你的帮助。

非常感谢!!

1 个答案:

答案 0 :(得分:0)

XML文档在名称空间http://schemas.xmlsoap.org/wsdl/(WSDL)中有其顶级元素,因此需要针对XML Schema for WSDL进行验证。

您还需要&#34;模式架构&#34; (作为XML Schema for XML Schema)在范围内,因为XML Schema嵌套在wsdl:types中,以确保此部分也得到正确验证。

问题中引用的模式(对于urn:com/IMIC)与实际的SOAP数据相关(因为它是由嵌套模式导入的),但据我所知,它与WSDL文档无关。明显的复杂性来自两个级别的验证:

  • 一方面针对WSDL的SOAP数据(包括针对嵌套的XML Schema)
  • 另一方面,WSDL文档针对&#34;元模式&#34;进行了验证。 (这个问题的主题)。

重要的是一次只能在一个层面上进行推理。

为了验证xmlvalidation.com以及大多数XML Schema验证引擎,您需要为架构位置提供xsi:schemaLocation属性。此属性采用URL列表:模式名称空间,其位置(对于WSDL,它与名称空间相同),另一个模式名称空间,其位置等。由于您需要两个模式,这使得它成为四个URL,如下所示:

<wsdl:definitions
  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
  xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  xmlns:tns="http://com.my.company/IFBTCIBPSI" 
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  name="IFBTCIBPSI" 
  targetNamespace="http://com.my.company/IFBTCIBPSI"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://schemas.xmlsoap.org/wsdl/
                      http://schemas.xmlsoap.org/wsdl/
                      http://www.w3.org/2001/XMLSchema
                      https://www.w3.org/2001/XMLSchema.xsd" >
    <!-- rest of document -->
</wsdl:definitions/>

请注意,xmlvalidation.com似乎缺少它要求的两个文件(XMLSchema.dtd和datatypes.dtd)。如果是,您可以从这些位置进行复制和粘贴:

在我这边,验证似乎成功(没有发现错误)。 oXygen也不抱怨。