0

我在这里有一个架构,我试图在其中包含/导入另一个没有命名空间的架构(并且无法更改,因为它来自另一个供应商并且不再验证他们的 XML)。这是第一个架构:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 
xmlns:samp="http://sample/namespace" 
targetNamespace="http://sample/namespace" 
elementFormDefault="unqualified" attributeFormDefault="unqualified"
xmlns:otr1="http://sample/import/namespace1" 
xmlns:otr2="http://sample/import/namespace2">

<xs:import namespace="http://sample/import/namespace1" schemaLocation="other1.xsd" />
<xs:import namespace="http://sample/import/namespace2" schemaLocation="other2.xsd"  />
<!-- This one below is having problems, it is valid XML, and I am able to use it
but I am not meeting the actual requirments I have (explained later) -->
<xs:import schemaLocation=="NO_NAME_SPACE_PROBLEM.xsd"/>

...
<xs:element ref="some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA"/>
...


</xs:schema>

而“NO_NAME_SPACE_SHEMA_PROBLEM.xsd”可以在一定程度上改变,但不能有命名空间。

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     elementFormDefault="unqualified" attributeFormDefault="unqualified">

 <xsd:element name="some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA" 
    type="xsd:string" nillable="true"/>

</xs:schema>

运行 JiBX codegen 时遇到的问题:

 [echo] Running code generation
 [java] Output to directory C:\DOCUME~1\user1\LOCALS~1\Temp\nguser\Temp-Src
 [java] ERROR validation.ValidationContext - Error: Referenced element '{http://sample/namespace}:some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA` is not defined for element at (line 69, col 32, in parent.xsd)
 [java] Terminating due to errors in input schemas
 [java] Error: Referenced element '{http://sample/namespace}:some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA' is not defined for element at (line 69, col 32, in parent.xsd)
4

1 回答 1

0

引用的错误消息{http://sample/namespace}:some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA似乎很奇怪,因为您没有引用{http://sample/namespace}:some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA但是some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA.

我只能看到两个选项:

  • 您没有粘贴完整的父模式示例;在您的实际模式中,您将 xmlns(即不带前缀)绑定到示例命名空间。这将解释错误消息,您可以通过不绑定 xmlns 来修复它。
  • 在导入没有目标命名空间的模式时,JiBX 中存在错误。
于 2010-08-27T16:58:02.790 回答