0

我的 xsd 元素是

<xs:complexType name="timeseries">
<xs:sequence>
  <xs:element name="start-date" type="xs:dateTime" minOccurs="0"/>
  <xs:element name="step-duration" type="xs:int"/>
  <xs:element name="value" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>

尽管我无法使用 VS2010 在 C++ 中使用代码合成器来解析它。编译期间是否有任何允许 xs:anyType 解析的 XSD 属性?

4

1 回答 1

0

虽然我已经下载了最新的版本,其中有一个选项,但--generate AnyType 我无法获取数据。不幸的是,我不得不更改 XSD,现在我有不同类型的不同序列(xs:boolean、xs:float 等),具体取决于数据。

于 2015-03-02T12:38:02.577 回答