我需要针对xsd验证我的Web服务对象,而我正在通过以下方式进行操作:

SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
factory.setResourceResolver(new ResourceResolver());
Source schemaFile = new StreamSource('Input stream with my xsd');
factory.newSchema(schemaFile);


最后一行-factory.newSchema(schemaFile);当使用使用soap-enc名称空间的xsd文件时,引发throw和exception。以下是xsd文件,名称空间声明和使用名称空间的复杂类型的一部分。

<xsd:schema
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/">
      <xsd:complexType name="name">
                <xsd:sequence>
                    <xsd:element name="id" type="xsd:string"/>
                    <xsd:element name="names" type="soap-enc:Array"/>
                </xsd:sequence>
            </xsd:complexType>


例外是:org.xml.sax.SAXParseException; lineNumber: 20; columnNumber: 62; src-resolve.4.2: Error resolving component 'soap-enc:Array'. It was detected that 'soap-enc:Array' is in namespace 'http://schemas.xmlsoap.org/soap/encoding/', but components from this namespace are not referenceable from schema document 'null'. If this is the incorrect namespace, perhaps the prefix of 'soap-enc:Array' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'null'.

最佳答案

此XML模式引用此模式文件中未定义的soap-enc:Array类型。因此,您必须包括定义它的文件:

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/">
  <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"
              schemaLocation="..."/>
  <!-- ...


您可以在网络上定义名称空间的位置找到合适的XML模式。我认为最好从本地文件系统下载并使用它,如果您经常需要它,通常效率更高。不过,也可以将URL用作schemaLocation使用。

关于java - java xml验证soap-enc命名空间异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27987201/

10-11 20:45