Codesynthesis 无法解析 xs:anyType c++
Codesynthesis can't parse xs:anyType c++
我的 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++ 中使用 codesynthecis 解析它。编译期间是否有 XSD 的 属性 允许 xs:anyType 解析?
虽然我已经下载了最新的realease,其中有一个选项--generate AnyType
但我无法获取数据。不幸的是,我不得不更改 XSD,现在我有不同类型的不同序列(xs:boolean、xs:float 等),具体取决于数据。
我的 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++ 中使用 codesynthecis 解析它。编译期间是否有 XSD 的 属性 允许 xs:anyType 解析?
虽然我已经下载了最新的realease,其中有一个选项--generate AnyType
但我无法获取数据。不幸的是,我不得不更改 XSD,现在我有不同类型的不同序列(xs:boolean、xs:float 等),具体取决于数据。