I want to create Peach DataModel
which would fuzzy XML (To be precise, the [Content_Types].xml from .docx). But when I create a XmlElement
attribute xmlns, then peach crashes with Unhandled Exception: System.ArgumentException
It works:
<DataModel name="TestTemplate">
<XmlElement elementName="Types">
<XmlAttribute attributeName="xmlnsSOMELETTERS">
<String value="http://schemas.openxmlformats.org/package/2006/content-types">
<Analyzer class="StringToken"/>
</String>
</XmlAttribute>
.......
</DataModel>
It not works:
<XmlElement elementName="Types">
<XmlAttribute attributeName="xmlns">
<String value="http://schemas.openxmlformats.org/package/2006/content-types">
<Analyzer class="StringToken"/>
</String>
</XmlAttribute>
Can you help me with this?