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:complexTy pe mixed="true"/>
</xsd:element>
When we expect the following:
<xsd:element name="aaa" type="xsd:strin g"/>
or maybe something like this
<xs:element name="aaa">
<xs:simpleConte nt>
<xs:extension base="xs:string "/>
</xs:simpleConten t>
</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:complexTy pe mixed="true"/>
</xsd:element>
When we expect the following:
<xsd:element name="aaa" type="xsd:strin g"/>
or maybe something like this
<xs:element name="aaa">
<xs:simpleConte nt>
<xs:extension base="xs:string "/>
</xs:simpleConten t>
</xs:element>
Anyone know of a tool that will convert as we would expect?