Codesynthesis无法解析xs:anyType c ++

时间:2015-02-24 18:01:30

标签: c++ xml xsd codesynthesis

我的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 ++中使用codesynthec解析此问题。在编译期间是否有XSD的任何属性允许xs:anyType解析?

1 个答案:

答案 0 :(得分:0)

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