M
mikea_59
Extracted from DTD:
<!ELEMENT aaa (#PCDATA)>
Why does the conversion using XmlSpy or some other tools turn out to
be:
<xsd:element name="aaa">
<xs:complexType mixed="true"/>
</xsd:element>
When we expect the following:
<xsd:element name="aaa" type="xsd:string"/>
or maybe something like this
<xs:element name="aaa">
<xs:simpleContent>
<xs:extension base="xs:string"/>
</xs:simpleContent>
</xs:element>
Anyone know of a tool that will convert as we would expect?
<!ELEMENT aaa (#PCDATA)>
Why does the conversion using XmlSpy or some other tools turn out to
be:
<xsd:element name="aaa">
<xs:complexType mixed="true"/>
</xsd:element>
When we expect the following:
<xsd:element name="aaa" type="xsd:string"/>
or maybe something like this
<xs:element name="aaa">
<xs:simpleContent>
<xs:extension base="xs:string"/>
</xs:simpleContent>
</xs:element>
Anyone know of a tool that will convert as we would expect?